mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-14 16:33:28 +00:00
Missing a cast previously.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26434 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
70695ab626
commit
bf57e1f456
@ -412,7 +412,7 @@ protected:
|
||||
assert(VT < 32 && Op < sizeof(OpActions)/sizeof(OpActions[0]) &&
|
||||
"Table isn't big enough!");
|
||||
OpActions[Op] &= ~(3ULL << VT*2);
|
||||
OpActions[Op] |= Action << VT*2;
|
||||
OpActions[Op] |= (uint64_t)Action << VT*2;
|
||||
}
|
||||
|
||||
/// addLegalFPImmediate - Indicate that this target can instruction select
|
||||
|
Loading…
x
Reference in New Issue
Block a user