aboutsummaryrefslogtreecommitdiff
path: root/source/fuzz/transformation_add_type_boolean.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/fuzz/transformation_add_type_boolean.cpp')
-rw-r--r--source/fuzz/transformation_add_type_boolean.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/fuzz/transformation_add_type_boolean.cpp b/source/fuzz/transformation_add_type_boolean.cpp
index 47fc744f..30ff43e2 100644
--- a/source/fuzz/transformation_add_type_boolean.cpp
+++ b/source/fuzz/transformation_add_type_boolean.cpp
@@ -43,7 +43,7 @@ void TransformationAddTypeBoolean::Apply(
opt::IRContext* ir_context, TransformationContext* /*unused*/) const {
opt::Instruction::OperandList empty_operands;
auto type_instruction = MakeUnique<opt::Instruction>(
- ir_context, spv::Op::OpTypeBool, 0, message_.fresh_id(), empty_operands);
+ ir_context, SpvOpTypeBool, 0, message_.fresh_id(), empty_operands);
auto type_instruction_ptr = type_instruction.get();
ir_context->module()->AddType(std::move(type_instruction));