chromium/v8/test/unittests/compiler/wasm-address-reassociation-unittest.cc

// Copyright 2023 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-address-reassociation.h"

#include "src/compiler/js-graph.h"
#include "src/compiler/machine-operator-reducer.h"
#include "src/compiler/node.h"
#include "test/unittests/compiler/graph-unittest.h"
#include "test/unittests/compiler/node-test-utils.h"
#include "testing/gmock-support.h"

namespace v8 {
namespace internal {
namespace compiler {

class WasmAddressReassociationTest : public GraphTest {};

TEST_F(WasmAddressReassociationTest, ProtectedBase) {}

TEST_F(WasmAddressReassociationTest, ProtectedIndex) {}

TEST_F(WasmAddressReassociationTest, ProtectedBaseIndex) {}

TEST_F(WasmAddressReassociationTest, ProtectedExtendIndex) {}

TEST_F(WasmAddressReassociationTest, Diamond) {}

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