mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-05 12:31:33 +00:00
Mark DBG_LABEL, EH_LABEL, and GC_LABEL as not-duplicable, since
they really are not duplicable. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@87009 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7f82fdb9bc
commit
777bdad579
@ -413,6 +413,7 @@ def DBG_LABEL : Instruction {
|
||||
let AsmString = "";
|
||||
let Namespace = "TargetInstrInfo";
|
||||
let hasCtrlDep = 1;
|
||||
let isNotDuplicable = 1;
|
||||
}
|
||||
def EH_LABEL : Instruction {
|
||||
let OutOperandList = (ops);
|
||||
@ -420,6 +421,7 @@ def EH_LABEL : Instruction {
|
||||
let AsmString = "";
|
||||
let Namespace = "TargetInstrInfo";
|
||||
let hasCtrlDep = 1;
|
||||
let isNotDuplicable = 1;
|
||||
}
|
||||
def GC_LABEL : Instruction {
|
||||
let OutOperandList = (ops);
|
||||
@ -427,6 +429,7 @@ def GC_LABEL : Instruction {
|
||||
let AsmString = "";
|
||||
let Namespace = "TargetInstrInfo";
|
||||
let hasCtrlDep = 1;
|
||||
let isNotDuplicable = 1;
|
||||
}
|
||||
def KILL : Instruction {
|
||||
let OutOperandList = (ops);
|
||||
|
Loading…
Reference in New Issue
Block a user