chromium/v8/src/compiler/wasm-escape-analysis.cc

// Copyright 2021 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "src/compiler/wasm-escape-analysis.h"

#include "src/compiler/machine-graph.h"
#include "src/compiler/node-properties.h"

namespace v8 {
namespace internal {
namespace compiler {

Reduction WasmEscapeAnalysis::Reduce(Node* node) {}

Reduction WasmEscapeAnalysis::ReduceAllocateRaw(Node* node) {}

}  // namespace compiler
}  // namespace internal
}  // namespace v8