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://review.tizen.org/git/?a=commitdiff_plain;h=6c75b3a3c0a8350dd15181e9824d6d76e689ec3a;p=platform%2Fupstream%2Fllvm.git Avoid non-ascii character in the source code. llvm-svn: 211914 --- diff --git a/llvm/include/llvm/Support/ARMWinEH.h b/llvm/include/llvm/Support/ARMWinEH.h index 31efbdc..78deb8d 100644 --- a/llvm/include/llvm/Support/ARMWinEH.h +++ b/llvm/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)