projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3912b73
)
Add missing exit for 'case'.
author
Jim Grosbach
<grosbach@apple.com>
Tue, 16 Aug 2011 21:42:31 +0000
(21:42 +0000)
committer
Jim Grosbach
<grosbach@apple.com>
Tue, 16 Aug 2011 21:42:31 +0000
(21:42 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@137774
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Target/ARM/AsmParser/ARMAsmParser.cpp
patch
|
blob
|
history
diff --git
a/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
b/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
index 3fdc7c90c3adc93f210d58e2016896ef7d33f979..dcd2a873f204c315f1b61ef892a2ddbbbd21119a 100644
(file)
--- a/
lib/Target/ARM/AsmParser/ARMAsmParser.cpp
+++ b/
lib/Target/ARM/AsmParser/ARMAsmParser.cpp
@@
-2962,6
+2962,7
@@
validateInstruction(MCInst &Inst,
if (widthm1 >= 32 - lsb)
return Error(Operands[5]->getStartLoc(),
"bitfield width must be in range [1,32-lsb]");
+ return false;
}
}