diff options
author | Chris Lattner <sabre@nondot.org> | 2006-01-26 22:24:51 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-01-26 22:24:51 +0000 |
commit | 476e67be1472d3a33d39f5195cc7cdfc95121db0 (patch) | |
tree | 2573cd879bf0bdd2bbebb2c26b7f9adbde484654 /llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | 63041f721597f94b4d9a37b1fd47371c481df8f6 (diff) | |
download | bcm5719-llvm-476e67be1472d3a33d39f5195cc7cdfc95121db0.tar.gz bcm5719-llvm-476e67be1472d3a33d39f5195cc7cdfc95121db0.zip |
initial selectiondag support for new INLINEASM node. Note that inline asms
with outputs or inputs are not supported yet. :)
llvm-svn: 25664
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index d864042537f..60f062847fc 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/llvm/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"; |