1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00

Mark DBG_LABEL, EH_LABEL, and GC_LABEL as not-duplicable, since

they really are not duplicable.

llvm-svn: 87009
This commit is contained in:
Dan Gohman 2009-11-12 18:36:19 +00:00
parent bb0bc01e60
commit b15f87cc4f

View File

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