aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-01-26 22:24:51 +0000
committerChris Lattner <sabre@nondot.org>2006-01-26 22:24:51 +0000
commitce7518ce92f45568dc7d4cbb863284afb962fec5 (patch)
treeca8804c29d5228ef0ef925a41a3b61cf39816d4b /lib/CodeGen/SelectionDAG/SelectionDAG.cpp
parent7572eb81eee93b0c666ddc5f5ff0ff72f17574fd (diff)
initial selectiondag support for new INLINEASM node. Note that inline asms
with outputs or inputs are not supported yet. :) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25664 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r--lib/CodeGen/SelectionDAG/SelectionDAG.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
index d864042537..60f062847f 100644
--- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
+++ b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
@@ -2028,7 +2028,8 @@ const char *SDNode::getOperationName(const SelectionDAG *G) const {
case ISD::CopyFromReg: return "CopyFromReg";
case ISD::UNDEF: return "undef";
case ISD::MERGE_VALUES: return "mergevalues";
-
+ case ISD::INLINEASM: return "inlineasm";
+
// Unary operators
case ISD::FABS: return "fabs";
case ISD::FNEG: return "fneg";