GlobalISel: remove redundant property setting. NFC.

AsmString is empty by default.

llvm-svn: 274789
This commit is contained in:
Tim Northover 2016-07-07 19:45:45 +00:00
parent 19a21d62bf
commit 917e744ea6
1 changed files with 0 additions and 3 deletions

View File

@ -19,7 +19,6 @@
def G_ADD : Instruction {
let OutOperandList = (outs unknown:$dst);
let InOperandList = (ins unknown:$src1, unknown:$src2);
let AsmString = "";
let hasSideEffects = 0;
let isCommutable = 1;
}
@ -28,7 +27,6 @@ def G_ADD : Instruction {
def G_OR : Instruction {
let OutOperandList = (outs unknown:$dst);
let InOperandList = (ins unknown:$src1, unknown:$src2);
let AsmString = "";
let hasSideEffects = 0;
let isCommutable = 1;
}
@ -40,7 +38,6 @@ def G_OR : Instruction {
def G_BR : Instruction {
let OutOperandList = (outs);
let InOperandList = (ins unknown:$src1);
let AsmString = "";
let hasSideEffects = 0;
let isBranch = 1;
let isTerminator = 1;