1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 03:02:36 +01:00

Fixed spelling mistake. NFCI.

llvm-svn: 322009
This commit is contained in:
Simon Pilgrim 2018-01-08 17:16:59 +00:00
parent 77150ad708
commit 005dbb9707

View File

@ -1279,7 +1279,7 @@ public:
/// \returns true if *this >= RHS when considered unsigned.
bool uge(uint64_t RHS) const { return !ult(RHS); }
/// \brief Signed greather or equal comparison
/// \brief Signed greater or equal comparison
///
/// Regards both *this and RHS as signed quantities and compares them for
/// validity of the greater-or-equal relationship.