GlobalISel: remove redundant property setting. NFC.
AsmString is empty by default. llvm-svn: 274789
This commit is contained in:
parent
19a21d62bf
commit
917e744ea6
|
|
@ -19,7 +19,6 @@
|
||||||
def G_ADD : Instruction {
|
def G_ADD : Instruction {
|
||||||
let OutOperandList = (outs unknown:$dst);
|
let OutOperandList = (outs unknown:$dst);
|
||||||
let InOperandList = (ins unknown:$src1, unknown:$src2);
|
let InOperandList = (ins unknown:$src1, unknown:$src2);
|
||||||
let AsmString = "";
|
|
||||||
let hasSideEffects = 0;
|
let hasSideEffects = 0;
|
||||||
let isCommutable = 1;
|
let isCommutable = 1;
|
||||||
}
|
}
|
||||||
|
|
@ -28,7 +27,6 @@ def G_ADD : Instruction {
|
||||||
def G_OR : Instruction {
|
def G_OR : Instruction {
|
||||||
let OutOperandList = (outs unknown:$dst);
|
let OutOperandList = (outs unknown:$dst);
|
||||||
let InOperandList = (ins unknown:$src1, unknown:$src2);
|
let InOperandList = (ins unknown:$src1, unknown:$src2);
|
||||||
let AsmString = "";
|
|
||||||
let hasSideEffects = 0;
|
let hasSideEffects = 0;
|
||||||
let isCommutable = 1;
|
let isCommutable = 1;
|
||||||
}
|
}
|
||||||
|
|
@ -40,7 +38,6 @@ def G_OR : Instruction {
|
||||||
def G_BR : Instruction {
|
def G_BR : Instruction {
|
||||||
let OutOperandList = (outs);
|
let OutOperandList = (outs);
|
||||||
let InOperandList = (ins unknown:$src1);
|
let InOperandList = (ins unknown:$src1);
|
||||||
let AsmString = "";
|
|
||||||
let hasSideEffects = 0;
|
let hasSideEffects = 0;
|
||||||
let isBranch = 1;
|
let isBranch = 1;
|
||||||
let isTerminator = 1;
|
let isTerminator = 1;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue