[llvm-commits] CVS: llvm/include/llvm/Constants.h
Chris Lattner
sabre at nondot.org
Sun Sep 17 21:58:20 PDT 2006
Changes in directory llvm/include/llvm:
Constants.h updated: 1.86 -> 1.87
---
Log message:
fix typo
---
Diffs of the changes: (+1 -1)
Constants.h | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/include/llvm/Constants.h
diff -u llvm/include/llvm/Constants.h:1.86 llvm/include/llvm/Constants.h:1.87
--- llvm/include/llvm/Constants.h:1.86 Fri Aug 25 12:43:11 2006
+++ llvm/include/llvm/Constants.h Sun Sep 17 23:58:06 2006
@@ -61,7 +61,7 @@
/// Return the constant as a 64-bit integer value after it has been sign
/// sign extended as appropriate for the type of this constant.
- /// @brief REturn the sign extended value.
+ /// @brief Return the sign extended value.
inline int64_t getSExtValue() const {
unsigned Size = getType()->getPrimitiveSizeInBits();
return (Val.Signed << (64-Size)) >> (64-Size);
More information about the llvm-commits
mailing list