From: Chris Lattner Date: Mon, 1 May 2006 17:00:49 +0000 (+0000) Subject: Put PHI/INLINEASM into the correct namespace. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=de321a801438f444a42066ca70567440bf2a86c7;p=oota-llvm.git Put PHI/INLINEASM into the correct namespace. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28037 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/Target.td b/lib/Target/Target.td index 663dfce91e4..92179a5fafa 100644 --- a/lib/Target/Target.td +++ b/lib/Target/Target.td @@ -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"; } //===----------------------------------------------------------------------===//