summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorLogan Chien <tzuhsiang.chien@gmail.com>2014-06-27 17:25:54 +0000
committerLogan Chien <tzuhsiang.chien@gmail.com>2014-06-27 17:25:54 +0000
commit7b45088df0021e9b7a0dbed0e030cb6b5c1cbd27 (patch)
tree78c56180d72c8136342e1d697f8b0abf4df5580e /include
parentd7d427732e3e7f571bc915c15974e184733bbd01 (diff)
downloadllvm-7b45088df0021e9b7a0dbed0e030cb6b5c1cbd27.tar.gz
llvm-7b45088df0021e9b7a0dbed0e030cb6b5c1cbd27.tar.bz2
llvm-7b45088df0021e9b7a0dbed0e030cb6b5c1cbd27.tar.xz
Avoid non-ascii character in the source code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211914 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Support/ARMWinEH.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Support/ARMWinEH.h b/include/llvm/Support/ARMWinEH.h
index 31efbdc4ed..78deb8d36a 100644
--- a/include/llvm/Support/ARMWinEH.h
+++ b/include/llvm/Support/ARMWinEH.h
@@ -193,7 +193,7 @@ inline bool EpilogueFolding(const RuntimeFunction &RF) {
}
/// 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)