summaryrefslogtreecommitdiff
path: root/include/llvm/ADT/APInt.h
diff options
context:
space:
mode:
authorDale Johannesen <dalej@apple.com>2007-09-21 22:09:37 +0000
committerDale Johannesen <dalej@apple.com>2007-09-21 22:09:37 +0000
commit910993e8dc49a25d9da3b53de4a82568c14e91cc (patch)
tree3dbc8815c0b1b48e3bdaf73a2b46004c3827bbcf /include/llvm/ADT/APInt.h
parent3f65f02d25b920c3cef4dd8a8fc8fc76cad1236e (diff)
downloadllvm-910993e8dc49a25d9da3b53de4a82568c14e91cc.tar.gz
llvm-910993e8dc49a25d9da3b53de4a82568c14e91cc.tar.bz2
llvm-910993e8dc49a25d9da3b53de4a82568c14e91cc.tar.xz
Change APFloat::convertFromInteger to take the incoming
bit width instead of number of words allocated, which makes it actually work for int->APF conversions. Adjust callers. Add const to one of the APInt constructors to prevent surprising match when called with const argument. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42210 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/ADT/APInt.h')
-rw-r--r--include/llvm/ADT/APInt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/ADT/APInt.h b/include/llvm/ADT/APInt.h
index 97fe4e9201..01b49d0864 100644
--- a/include/llvm/ADT/APInt.h
+++ b/include/llvm/ADT/APInt.h
@@ -172,7 +172,7 @@ public:
/// @param numWords the number of words in bigVal
/// @param bigVal a sequence of words to form the initial value of the APInt
/// @brief Construct an APInt of numBits width, initialized as bigVal[].
- APInt(uint32_t numBits, uint32_t numWords, uint64_t bigVal[]);
+ APInt(uint32_t numBits, uint32_t numWords, const uint64_t bigVal[]);
/// This constructor interprets Val as a string in the given radix. The
/// interpretation stops when the first charater that is not suitable for the