diff options
-rw-r--r-- | include/llvm/Constants.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Constants.h b/include/llvm/Constants.h index e0530290d1..6354c1166d 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); |