[llvm] r211914 - Avoid non-ascii character in the source code.
Logan Chien
tzuhsiang.chien at gmail.com
Fri Jun 27 10:25:55 PDT 2014
Author: logan
Date: Fri Jun 27 12:25:54 2014
New Revision: 211914
URL: http://llvm.org/viewvc/llvm-project?rev=211914&view=rev
Log:
Avoid non-ascii character in the source code.
Modified:
llvm/trunk/include/llvm/Support/ARMWinEH.h
Modified: llvm/trunk/include/llvm/Support/ARMWinEH.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/ARMWinEH.h?rev=211914&r1=211913&r2=211914&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/ARMWinEH.h (original)
+++ llvm/trunk/include/llvm/Support/ARMWinEH.h Fri Jun 27 12:25:54 2014
@@ -193,7 +193,7 @@ inline bool EpilogueFolding(const Runtim
}
/// StackAdjustment - calculated stack adjustment in words. The stack
/// adjustment should be determined via this function to account for the special
-/// handling the special encoding when the value is ⥠0x3f4.
+/// handling the special encoding when the value is >= 0x3f4.
inline uint16_t StackAdjustment(const RuntimeFunction &RF) {
uint16_t Adjustment = RF.StackAdjust();
if (Adjustment >= 0x3f4)
More information about the llvm-commits
mailing list