summaryrefslogtreecommitdiff
path: root/deps/v8/src/compiler/turboshaft/type-assertions-phase.h
blob: 2388013daae0b509df8ad34d79a9bf0deb1ba3a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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.

#ifndef V8_COMPILER_TURBOSHAFT_TYPE_ASSERTIONS_PHASE_H_
#define V8_COMPILER_TURBOSHAFT_TYPE_ASSERTIONS_PHASE_H_

#include "src/compiler/turboshaft/phase.h"

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

struct TypeAssertionsPhase {
  DECL_TURBOSHAFT_PHASE_CONSTANTS(TypeAssertions)

  void Run(PipelineData* data, Zone* temp_zone);
};

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

#endif  // V8_COMPILER_TURBOSHAFT_TYPE_ASSERTIONS_PHASE_H_