[llvm-commits] CVS: llvm/lib/Target/Target.td
Chris Lattner
lattner at cs.uiuc.edu
Mon May 1 10:01:13 PDT 2006
Changes in directory llvm/lib/Target:
Target.td updated: 1.77 -> 1.78
---
Log message:
Put PHI/INLINEASM into the correct namespace.
---
Diffs of the changes: (+2 -0)
Target.td | 2 ++
1 files changed, 2 insertions(+)
Index: llvm/lib/Target/Target.td
diff -u llvm/lib/Target/Target.td:1.77 llvm/lib/Target/Target.td:1.78
--- llvm/lib/Target/Target.td:1.77 Wed Apr 19 15:38:28 2006
+++ llvm/lib/Target/Target.td Mon May 1 12:00:49 2006
@@ -224,10 +224,12 @@
def PHI : Instruction {
let OperandList = (ops variable_ops);
let AsmString = "PHINODE";
+ let Namespace = "TargetInstrInfo";
}
def INLINEASM : Instruction {
let OperandList = (ops variable_ops);
let AsmString = "";
+ let Namespace = "TargetInstrInfo";
}
//===----------------------------------------------------------------------===//
More information about the llvm-commits
mailing list