[llvm] r211554 - Fix comments from r211553
Duncan P. N. Exon Smith
dexonsmith at apple.com
Mon Jun 23 16:17:36 PDT 2014
Author: dexonsmith
Date: Mon Jun 23 18:17:36 2014
New Revision: 211554
URL: http://llvm.org/viewvc/llvm-project?rev=211554&view=rev
Log:
Fix comments from r211553
Modified:
llvm/trunk/include/llvm/Support/ScaledNumber.h
Modified: llvm/trunk/include/llvm/Support/ScaledNumber.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/ScaledNumber.h?rev=211554&r1=211553&r2=211554&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/ScaledNumber.h (original)
+++ llvm/trunk/include/llvm/Support/ScaledNumber.h Mon Jun 23 18:17:36 2014
@@ -388,7 +388,7 @@ std::pair<DigitsT, int16_t> getDifferenc
return std::make_pair(LDigits, LScale);
}
-/// \brief Convenience helper for 32-bit sum.
+/// \brief Convenience helper for 32-bit difference.
inline std::pair<uint32_t, int16_t> getDifference32(uint32_t LDigits,
int16_t LScale,
uint32_t RDigits,
@@ -396,7 +396,7 @@ inline std::pair<uint32_t, int16_t> getD
return getDifference(LDigits, LScale, RDigits, RScale);
}
-/// \brief Convenience helper for 64-bit sum.
+/// \brief Convenience helper for 64-bit difference.
inline std::pair<uint64_t, int16_t> getDifference64(uint64_t LDigits,
int16_t LScale,
uint64_t RDigits,
More information about the llvm-commits
mailing list