diff options
author | Evan Cheng <evan.cheng@apple.com> | 2006-03-01 00:58:54 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2006-03-01 00:58:54 +0000 |
commit | bf57e1f456603b3f584ea42313bed89f630828fb (patch) | |
tree | dac409919a4a4dfaf3ee3427fd76ee4714b9f2d2 | |
parent | 70695ab62611cd92fda17e5effaf7796d54b8f86 (diff) |
Missing a cast previously.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26434 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Target/TargetLowering.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Target/TargetLowering.h b/include/llvm/Target/TargetLowering.h index 4ef969297e..94fce89c69 100644 --- a/include/llvm/Target/TargetLowering.h +++ b/include/llvm/Target/TargetLowering.h @@ -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 |