Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/KhronosGroup/SPIRV-Tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'test/opcode_make_test.cpp')
-rw-r--r--test/opcode_make_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/opcode_make_test.cpp b/test/opcode_make_test.cpp
index 6481ef326..6c1dab60b 100644
--- a/test/opcode_make_test.cpp
+++ b/test/opcode_make_test.cpp
@@ -35,7 +35,7 @@ TEST(OpcodeMake, Samples) {
uint32_t word = 0;
word |= uint32_t(opcode);
word |= uint32_t(wordCount) << 16;
- EXPECT_EQ(word, spvOpcodeMake(wordCount, SpvOp(opcode)));
+ EXPECT_EQ(word, spvOpcodeMake(wordCount, spv::Op(opcode)));
}
}
}