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 | 7d6781b0fe034557269fbd67238da2c374a7df9b (patch) | |
tree | f126c319251f0a8917802f4ee946635f9df2ed17 /llvm/lib/Support/APInt.cpp | |
parent | 0f899601f3aebd7738258048d4243fd84214ed4f (diff) | |
download | bcm5719-llvm-7d6781b0fe034557269fbd67238da2c374a7df9b.tar.gz bcm5719-llvm-7d6781b0fe034557269fbd67238da2c374a7df9b.zip |
Tabs -> spaces, and remove trailing whitespace.
llvm-svn: 82355
Diffstat (limited to 'llvm/lib/Support/APInt.cpp')
-rw-r--r-- | llvm/lib/Support/APInt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/APInt.cpp b/llvm/lib/Support/APInt.cpp index d7706268dc2..56d47736eab 100644 --- a/llvm/lib/Support/APInt.cpp +++ b/llvm/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()) |