summaryrefslogtreecommitdiff
path: root/lib/Support
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-03-19 20:37:47 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-03-19 20:37:47 +0000
commit3a341375487e4a296821edbcebafd289d55d119b (patch)
tree8b6bde050021b13650d50bed3d3549d25019d6c2 /lib/Support
parent95da1213958b63c6a5ef65107bf8c3b6a07d3ffb (diff)
downloadllvm-3a341375487e4a296821edbcebafd289d55d119b.tar.gz
llvm-3a341375487e4a296821edbcebafd289d55d119b.tar.bz2
llvm-3a341375487e4a296821edbcebafd289d55d119b.tar.xz
Implement extension of sign bits for negative values in the uint64_t
constructor. This helps to fix test/Assembler/2007-03-19-NegValue.ll git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35180 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support')
-rw-r--r--lib/Support/APInt.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/Support/APInt.cpp b/lib/Support/APInt.cpp
index 08ec236200..0d0f9ffca4 100644
--- a/lib/Support/APInt.cpp
+++ b/lib/Support/APInt.cpp
@@ -43,7 +43,8 @@ inline static uint64_t* getMemory(uint32_t numWords) {
return result;
}
-APInt::APInt(uint32_t numBits, uint64_t val) : BitWidth(numBits), VAL(0) {
+APInt::APInt(uint32_t numBits, uint64_t val, bool isSigned )
+ : BitWidth(numBits), VAL(0) {
assert(BitWidth >= IntegerType::MIN_INT_BITS && "bitwidth too small");
assert(BitWidth <= IntegerType::MAX_INT_BITS && "bitwidth too large");
if (isSingleWord())
@@ -51,6 +52,9 @@ APInt::APInt(uint32_t numBits, uint64_t val) : BitWidth(numBits), VAL(0) {
else {
pVal = getClearedMemory(getNumWords());
pVal[0] = val;
+ if (isSigned && int64_t(val) < 0)
+ for (unsigned i = 1; i < getNumWords(); ++i)
+ pVal[i] = -1ULL;
}
clearUnusedBits();
}