chromium/v8/test/unittests/compiler/turboshaft/turboshaft-types-unittest.cc

// Copyright 2022 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/turboshaft/types.h"
#include "src/handles/handles.h"
#include "test/unittests/test-utils.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace v8::internal::compiler::turboshaft {

class TurboshaftTypesTest : public TestWithNativeContextAndZone {};

TEST_F(TurboshaftTypesTest, Word32) {}

TEST_F(TurboshaftTypesTest, Word64) {}

TEST_F(TurboshaftTypesTest, Float32) {}

TEST_F(TurboshaftTypesTest, Float64) {}

TEST_F(TurboshaftTypesTest, Word32LeastUpperBound) {}

TEST_F(TurboshaftTypesTest, Word64LeastUpperBound) {}

TEST_F(TurboshaftTypesTest, Float32LeastUpperBound) {}

TEST_F(TurboshaftTypesTest, Float64LeastUpperBound) {}

}  // namespace v8::internal::compiler::turboshaft