veridex: fix a sketchy switch scope
Should be harmless, but it tripped me up when trying to read this code.
Bug: None
Test: Treehugger
Change-Id: Iefa56768d9625a3f67e2ee377040808576ffc625
diff --git a/tools/veridex/flow_analysis.cc b/tools/veridex/flow_analysis.cc
index f5eb4ea..69f7def 100644
--- a/tools/veridex/flow_analysis.cc
+++ b/tools/veridex/flow_analysis.cc
@@ -495,7 +495,7 @@
case Instruction::DIV_INT_LIT8:
case Instruction::REM_INT_LIT8:
case Instruction::SHL_INT_LIT8:
- case Instruction::SHR_INT_LIT8: {
+ case Instruction::SHR_INT_LIT8:
case Instruction::USHR_INT_LIT8: {
UpdateRegister(instruction.VRegA(), VeriClass::integer_);
break;
@@ -537,7 +537,7 @@
case Instruction::CMPG_FLOAT:
case Instruction::CMPG_DOUBLE:
case Instruction::CMPL_FLOAT:
- case Instruction::CMPL_DOUBLE:
+ case Instruction::CMPL_DOUBLE: {
UpdateRegister(instruction.VRegA(), VeriClass::integer_);
break;
}