diff options
author | Chris Lattner <sabre@nondot.org> | 2006-05-01 17:00:49 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-05-01 17:00:49 +0000 |
commit | de321a801438f444a42066ca70567440bf2a86c7 (patch) | |
tree | 0a0846a745917bf2d40789c1e6cd6ff70e59f397 | |
parent | afba446d99b3053a9aac0bbe04785601be5a4e97 (diff) |
Put PHI/INLINEASM into the correct namespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28037 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/Target.td | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Target/Target.td b/lib/Target/Target.td index 663dfce91e..92179a5faf 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"; } //===----------------------------------------------------------------------===// |