summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorVikram S. Adve <vadve@cs.uiuc.edu>2003-07-10 19:48:19 +0000
committerVikram S. Adve <vadve@cs.uiuc.edu>2003-07-10 19:48:19 +0000
commit940a3a47b0394916fb02f86b656bfc33078a8394 (patch)
treec39559262bb6589839ab98f720dc784c004e35f7 /lib
parentad80db6d7d76f961b55255b88ba8bdbec17d7779 (diff)
downloadllvm-940a3a47b0394916fb02f86b656bfc33078a8394.tar.gz
llvm-940a3a47b0394916fb02f86b656bfc33078a8394.tar.bz2
llvm-940a3a47b0394916fb02f86b656bfc33078a8394.tar.xz
Bug fix in creating constants: need 1U << 31, not 1 << 31.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7158 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Target/SparcV9/SparcV9InstrInfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/SparcV9/SparcV9InstrInfo.cpp b/lib/Target/SparcV9/SparcV9InstrInfo.cpp
index 4fea658d65..75bea0d777 100644
--- a/lib/Target/SparcV9/SparcV9InstrInfo.cpp
+++ b/lib/Target/SparcV9/SparcV9InstrInfo.cpp
@@ -264,7 +264,7 @@ CreateUIntSetInstruction(const TargetMachine& target,
static const uint64_t lo32 = (uint32_t) ~0;
if (C <= lo32) // High 32 bits are 0. Set low 32 bits.
CreateSETUWConst(target, (uint32_t) C, dest, mvec);
- else if ((C & ~lo32) == ~lo32 && (C & (1 << 31))) {
+ else if ((C & ~lo32) == ~lo32 && (C & (1U << 31))) {
// All high 33 (not 32) bits are 1s: sign-extension will take care
// of high 32 bits, so use the sequence for signed int
CreateSETSWConst(target, (int32_t) C, dest, mvec);