aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDale Johannesen <dalej@apple.com>2007-04-30 00:30:48 +0000
committerDale Johannesen <dalej@apple.com>2007-04-30 00:30:48 +0000
commit23c968478ea7e9e06eb322b8042711266a3b95db (patch)
treeeb4397e5d86b6be9e56d26d641c5a34e0191e2f6
parentc9a83e4f19519e19469efa0ed39d81ed60b94401 (diff)
remove unused variable
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36585 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/ARM/ARMTargetAsmInfo.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Target/ARM/ARMTargetAsmInfo.cpp b/lib/Target/ARM/ARMTargetAsmInfo.cpp
index b4b4da1826..5fa3ced52a 100644
--- a/lib/Target/ARM/ARMTargetAsmInfo.cpp
+++ b/lib/Target/ARM/ARMTargetAsmInfo.cpp
@@ -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') {