mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
Set CCR (EFLAGS) copy cost to -1, i.e. extremely expensive to copy.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42124 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a3ca3149f2
commit
dcfa73fe3c
@ -521,4 +521,6 @@ def VR128 : RegisterClass<"X86", [v16i8, v8i16, v4i32, v2i64, v4f32, v2f64],128,
|
||||
}
|
||||
|
||||
// Status flags registers.
|
||||
def CCR : RegisterClass<"X86", [i32], 32, [EFLAGS]>;
|
||||
def CCR : RegisterClass<"X86", [i32], 32, [EFLAGS]> {
|
||||
let CopyCost = -1; // Don't allow copying of status registers.
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user