aboutsummaryrefslogtreecommitdiff
path: root/source/fuzz/call_graph.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/fuzz/call_graph.cpp')
-rw-r--r--source/fuzz/call_graph.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/fuzz/call_graph.cpp b/source/fuzz/call_graph.cpp
index d61a5f84..c52bc342 100644
--- a/source/fuzz/call_graph.cpp
+++ b/source/fuzz/call_graph.cpp
@@ -54,7 +54,7 @@ void CallGraph::BuildGraphAndGetDepthOfFunctionCalls(
// Consider every function call instruction in every block.
for (auto& block : function) {
for (auto& instruction : block) {
- if (instruction.opcode() != spv::Op::OpFunctionCall) {
+ if (instruction.opcode() != SpvOpFunctionCall) {
continue;
}
// Get the id of the function being called.