diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-09-20 02:20:51 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-09-20 02:20:51 +0000 |
commit | 3be44e69724c80460d2ef5abab22d802f78615cc (patch) | |
tree | c83fcbcd43ed4ff6137d36f026f0fafc3cc1ae34 /lib/Support/APInt.cpp | |
parent | ab2f66670c4c8ecc8e62d989f9d9d9c6f62dc07b (diff) | |
download | external_llvm-3be44e69724c80460d2ef5abab22d802f78615cc.zip external_llvm-3be44e69724c80460d2ef5abab22d802f78615cc.tar.gz external_llvm-3be44e69724c80460d2ef5abab22d802f78615cc.tar.bz2 |
Tabs -> spaces, and remove trailing whitespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82355 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/APInt.cpp')
-rw-r--r-- | lib/Support/APInt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Support/APInt.cpp b/lib/Support/APInt.cpp index d770626..56d4773 100644 --- a/lib/Support/APInt.cpp +++ b/lib/Support/APInt.cpp @@ -2054,7 +2054,7 @@ void APInt::fromString(unsigned numbits, const StringRef& str, uint8_t radix) { assert(((slen-1)*3 <= numbits || radix != 8) && "Insufficient bit width"); assert(((slen-1)*4 <= numbits || radix != 16) && "Insufficient bit width"); assert((((slen-1)*64)/22 <= numbits || radix != 10) - && "Insufficient bit width"); + && "Insufficient bit width"); // Allocate memory if (!isSingleWord()) |