mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-10 17:07:06 +00:00
Fix comments from r211553
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211554 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
558b7725b7
commit
67886a98a2
@ -388,7 +388,7 @@ std::pair<DigitsT, int16_t> 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<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> 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<uint64_t, int16_t> getDifference64(uint64_t LDigits,
|
||||
int16_t LScale,
|
||||
uint64_t RDigits,
|
||||
|
Loading…
Reference in New Issue
Block a user