Fix vmov.f64 disassembly on targets where sizeof(long) != 8.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@114240 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Benjamin Kramer
2010-09-17 23:48:07 +00:00
parent fbd1873041
commit 92aa1f7123
2 changed files with 5 additions and 2 deletions

View File

@ -1588,9 +1588,9 @@ static APInt VFPExpandImm(unsigned char byte, unsigned N) {
Result = (uint64_t)slice(byte, 7, 7) << 63 |
(uint64_t)slice(byte, 5, 0) << 48;
if (bit6)
Result |= 0xffL << 54;
Result |= 0xffULL << 54;
else
Result |= 0x1L << 62;
Result |= 0x1ULL << 62;
}
return APInt(N, Result);
}