From: Logan Chien Date: Fri, 27 Jun 2014 17:25:54 +0000 (+0000) Subject: Avoid non-ascii character in the source code. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=7b45088df0021e9b7a0dbed0e030cb6b5c1cbd27;p=oota-llvm.git 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 --- diff --git a/include/llvm/Support/ARMWinEH.h b/include/llvm/Support/ARMWinEH.h index 31efbdc4ed5..78deb8d36a9 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)