remove unused variable

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36585 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dale Johannesen 2007-04-30 00:30:48 +00:00
parent c9a83e4f19
commit 23c968478e

View File

@ -112,7 +112,6 @@ unsigned ARMTargetAsmInfo::getInlineAsmLength(const char *Str) const {
atInsnStart = false;
if (isThumb) {
// BL and BLX <non-reg> are 4 bytes, all others 2.
const char*p = Str;
if ((*Str=='b' || *Str=='B') &&
(*(Str+1)=='l' || *(Str+1)=='L')) {
if (*(Str+2)=='x' || *(Str+2)=='X') {