aboutsummaryrefslogtreecommitdiff
path: root/source/opt/dominator_analysis.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/opt/dominator_analysis.cpp')
-rw-r--r--source/opt/dominator_analysis.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/opt/dominator_analysis.cpp b/source/opt/dominator_analysis.cpp
index eb6dfc9e..b692d26a 100644
--- a/source/opt/dominator_analysis.cpp
+++ b/source/opt/dominator_analysis.cpp
@@ -64,7 +64,7 @@ bool DominatorAnalysisBase::Dominates(Instruction* a, Instruction* b) const {
// We handle OpLabel instructions explicitly since they are not stored in the
// instruction list.
- if (current->opcode() == spv::Op::OpLabel) {
+ if (current->opcode() == SpvOpLabel) {
return true;
}