From: Jim Grosbach Date: Mon, 17 Oct 2011 22:41:42 +0000 (+0000) Subject: Tidy up. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=fa1ee880520d8da1168278c65575241487f871df;p=oota-llvm.git Tidy up. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142297 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/ARM/AsmParser/ARMAsmParser.cpp b/lib/Target/ARM/AsmParser/ARMAsmParser.cpp index b496705efcd..c887179fc33 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; }