Put PHI/INLINEASM into the correct namespace.
authorChris Lattner <sabre@nondot.org>
Mon, 1 May 2006 17:00:49 +0000 (17:00 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 1 May 2006 17:00:49 +0000 (17:00 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28037 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/Target.td

index 663dfce91e49ba5cfd37fb15e88e2eb9271b6b7f..92179a5fafa5e8fc666d21ac41d7fb226c171bb0 100644 (file)
@@ -224,10 +224,12 @@ class InstrInfo {
 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";
 }
 
 //===----------------------------------------------------------------------===//