summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Grosbach <grosbach@apple.com>2011-10-17 22:41:42 +0000
committerJim Grosbach <grosbach@apple.com>2011-10-17 22:41:42 +0000
commitfa1ee880520d8da1168278c65575241487f871df (patch)
tree42c755dd82877f3bae98d64fa4412ce4422a590d
parent10820d9a9754987533fd7a8b50b03831781cbd65 (diff)
downloadllvm-fa1ee880520d8da1168278c65575241487f871df.tar.gz
llvm-fa1ee880520d8da1168278c65575241487f871df.tar.bz2
llvm-fa1ee880520d8da1168278c65575241487f871df.tar.xz
Tidy up.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142297 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/ARM/AsmParser/ARMAsmParser.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Target/ARM/AsmParser/ARMAsmParser.cpp b/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
index b496705efc..c887179fc3 100644
--- a/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
+++ b/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
@@ -921,7 +921,6 @@ public:
int64_t Value = CE->getValue();
// i8 value splatted across 8 bytes. The immediate is just the 8 byte
// value.
-// return ((Value << 8) | (Value & 0xff)) == Value;
return Value >= 0 && Value < 256;
}