projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
afba446
)
Put PHI/INLINEASM into the correct namespace.
author
Chris Lattner
<sabre@nondot.org>
Mon, 1 May 2006 17:00:49 +0000
(17:00 +0000)
committer
Chris 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
patch
|
blob
|
history
diff --git
a/lib/Target/Target.td
b/lib/Target/Target.td
index 663dfce91e49ba5cfd37fb15e88e2eb9271b6b7f..92179a5fafa5e8fc666d21ac41d7fb226c171bb0 100644
(file)
--- 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";
}
//===----------------------------------------------------------------------===//