From 8f499f177278e80871704c7368aef7779e1e0c41 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 18 Sep 2006 04:58:06 +0000 Subject: [PATCH] fix typo llvm-svn: 30453 --- llvm/include/llvm/Constants.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/include/llvm/Constants.h b/llvm/include/llvm/Constants.h index e0530290d126..6354c1166d95 100644 --- a/llvm/include/llvm/Constants.h +++ b/llvm/include/llvm/Constants.h @@ -61,7 +61,7 @@ public: /// 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);