#ifndef V8_COMPILER_TURBOSHAFT_TYPED_OPTIMIZATIONS_REDUCER_H_
#define V8_COMPILER_TURBOSHAFT_TYPED_OPTIMIZATIONS_REDUCER_H_
#include "src/compiler/turboshaft/assembler.h"
#include "src/compiler/turboshaft/index.h"
#include "src/compiler/turboshaft/operations.h"
#include "src/compiler/turboshaft/typer.h"
#include "src/compiler/turboshaft/uniform-reducer-adapter.h"
namespace v8::internal::compiler::turboshaft {
template <typename>
class TypeInferenceReducer;
template <typename Next>
class TypedOptimizationsReducer
: public UniformReducerAdapter<TypedOptimizationsReducer, Next> { … };
}
#endif