mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
IMPLICIT_USE and IMPLICIT_DEF are dead, remove them.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45838 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
8372601521
commit
b38bec222c
@ -603,8 +603,6 @@ void Emitter::emitInstruction(const MachineInstr &MI,
|
||||
assert(0 && "JIT does not support inline asm!\n");
|
||||
case TargetInstrInfo::LABEL:
|
||||
assert(0 && "JIT does not support meta labels!\n");
|
||||
case X86::IMPLICIT_USE:
|
||||
case X86::IMPLICIT_DEF:
|
||||
case X86::IMPLICIT_DEF_GR8:
|
||||
case X86::IMPLICIT_DEF_GR16:
|
||||
case X86::IMPLICIT_DEF_GR32:
|
||||
|
@ -263,12 +263,7 @@ def ADJCALLSTACKUP : I<0, Pseudo, (outs), (ins i32imm:$amt1, i32imm:$amt2),
|
||||
"#ADJCALLSTACKUP",
|
||||
[(X86callseq_end imm:$amt1, imm:$amt2)]>;
|
||||
}
|
||||
def IMPLICIT_USE : I<0, Pseudo, (outs), (ins variable_ops),
|
||||
"#IMPLICIT_USE", []>;
|
||||
let isImplicitDef = 1 in {
|
||||
let neverHasSideEffects = 1 in
|
||||
def IMPLICIT_DEF : I<0, Pseudo, (outs variable_ops), (ins),
|
||||
"#IMPLICIT_DEF", []>;
|
||||
def IMPLICIT_DEF_GR8 : I<0, Pseudo, (outs GR8:$dst), (ins),
|
||||
"#IMPLICIT_DEF $dst",
|
||||
[(set GR8:$dst, (undef))]>;
|
||||
|
Loading…
Reference in New Issue
Block a user