mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-29 22:30:33 +00:00
Handle shifts >= 32 bits.
llvm-svn: 14291
This commit is contained in:
parent
36089f7034
commit
095db9590a
@ -61,10 +61,10 @@ Init *BitsRecTy::convertValue(BitInit *UI) {
|
||||
// appropriate bits...
|
||||
//
|
||||
Init *BitsRecTy::convertValue(IntInit *II) {
|
||||
int Value = II->getValue();
|
||||
int64_t Value = II->getValue();
|
||||
// Make sure this bitfield is large enough to hold the integer value...
|
||||
if (Value >= 0) {
|
||||
if (Value & ~((1 << Size)-1))
|
||||
if (Value & ~((1LL << Size)-1))
|
||||
return 0;
|
||||
} else {
|
||||
if ((Value >> Size) != -1 || ((Value & (1 << Size-1)) == 0))
|
||||
|
Loading…
Reference in New Issue
Block a user