git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142297 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Jim Grosbach 2011-10-17 22:41:42 +00:00
parent 10820d9a97
commit fa1ee88052

View File

@ -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;
}