From: Chris Lattner Date: Mon, 18 Sep 2006 04:58:06 +0000 (+0000) Subject: fix typo X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=6c6b6a77c0f68d5a41e94d8ef0b1093089e683fa;p=oota-llvm.git fix typo git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30453 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Constants.h b/include/llvm/Constants.h index e0530290d12..6354c1166d9 100644 --- a/include/llvm/Constants.h +++ b/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);