Avoid non-ascii character in the source code.

llvm-svn: 211914
This commit is contained in:
Logan Chien 2014-06-27 17:25:54 +00:00
parent c57d038240
commit 6c75b3a3c0
1 changed files with 1 additions and 1 deletions

View File

@ -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)