[llvm-commits] CVS: llvm/include/llvm/ADT/APInt.h
Reid Spencer
reid at x10sys.com
Mon Feb 26 13:06:22 PST 2007
Changes in directory llvm/include/llvm/ADT:
APInt.h updated: 1.23 -> 1.24
---
Log message:
Fix indentation.
---
Diffs of the changes: (+1 -1)
APInt.h | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/include/llvm/ADT/APInt.h
diff -u llvm/include/llvm/ADT/APInt.h:1.23 llvm/include/llvm/ADT/APInt.h:1.24
--- llvm/include/llvm/ADT/APInt.h:1.23 Mon Feb 26 14:57:12 2007
+++ llvm/include/llvm/ADT/APInt.h Mon Feb 26 15:06:05 2007
@@ -467,7 +467,7 @@
return int64_t(VAL << (APINT_BITS_PER_WORD - BitWidth)) >>
(APINT_BITS_PER_WORD - BitWidth);
assert(getActiveBits() <= 64 && "Too many bits for int64_t");
- return int64_t(pVal[0]);
+ return int64_t(pVal[0]);
}
/// @returns the largest value for an APInt of the specified bit-width and
More information about the llvm-commits
mailing list