From 67886a98a236ce484a75605af2e0468f84753952 Mon Sep 17 00:00:00 2001 From: "Duncan P. N. Exon Smith" Date: Mon, 23 Jun 2014 23:17:36 +0000 Subject: [PATCH] Fix comments from r211553 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211554 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Support/ScaledNumber.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/llvm/Support/ScaledNumber.h b/include/llvm/Support/ScaledNumber.h index e8563cdeab2..a561def0375 100644 --- a/include/llvm/Support/ScaledNumber.h +++ b/include/llvm/Support/ScaledNumber.h @@ -388,7 +388,7 @@ std::pair getDifference(DigitsT LDigits, int16_t LScale, return std::make_pair(LDigits, LScale); } -/// \brief Convenience helper for 32-bit sum. +/// \brief Convenience helper for 32-bit difference. inline std::pair getDifference32(uint32_t LDigits, int16_t LScale, uint32_t RDigits, @@ -396,7 +396,7 @@ inline std::pair getDifference32(uint32_t LDigits, return getDifference(LDigits, LScale, RDigits, RScale); } -/// \brief Convenience helper for 64-bit sum. +/// \brief Convenience helper for 64-bit difference. inline std::pair getDifference64(uint64_t LDigits, int16_t LScale, uint64_t RDigits,