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";
 }
 
 
//===----------------------------------------------------------------------===//



_______________________________________________
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to