diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-03-25 01:13:46 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-03-25 01:13:46 +0000 |
commit | 9bb967ec5cbd5789a3648ee4bd70f14383cc7c4d (patch) | |
tree | bbd4b167ddd349d94c1ca4279a49efded4dc8aac | |
parent | d4e07f200ad7b99d4decc61eb0136d25a6fde4cb (diff) | |
download | bcm5719-llvm-9bb967ec5cbd5789a3648ee4bd70f14383cc7c4d.tar.gz bcm5719-llvm-9bb967ec5cbd5789a3648ee4bd70f14383cc7c4d.zip |
Fix a typo in a comment.
llvm-svn: 35316
-rw-r--r-- | llvm/include/llvm/ADT/APInt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/ADT/APInt.h b/llvm/include/llvm/ADT/APInt.h index 7e5132f0d02..b39cf78b985 100644 --- a/llvm/include/llvm/ADT/APInt.h +++ b/llvm/include/llvm/ADT/APInt.h @@ -726,7 +726,7 @@ public: /// @brief Sign extend to a new width. APInt &sext(uint32_t width); - /// This operation zero extends the APInt to a new width. Thie high order bits + /// This operation zero extends the APInt to a new width. The high order bits /// are filled with 0 bits. It is an error to specify a width that is less /// than or equal to the current width. /// @brief Zero extend to a new width. |