mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-12 13:30:51 +00:00
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
This commit is contained in:
parent
d7d427732e
commit
7b45088df0
@ -193,7 +193,7 @@ inline bool EpilogueFolding(const RuntimeFunction &RF) {
|
|||||||
}
|
}
|
||||||
/// StackAdjustment - calculated stack adjustment in words. The stack
|
/// StackAdjustment - calculated stack adjustment in words. The stack
|
||||||
/// adjustment should be determined via this function to account for the special
|
/// 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) {
|
inline uint16_t StackAdjustment(const RuntimeFunction &RF) {
|
||||||
uint16_t Adjustment = RF.StackAdjust();
|
uint16_t Adjustment = RF.StackAdjust();
|
||||||
if (Adjustment >= 0x3f4)
|
if (Adjustment >= 0x3f4)
|
||||||
|
Loading…
Reference in New Issue
Block a user