diff options
author | Nate Begeman <natebegeman@mac.com> | 2008-05-12 19:40:03 +0000 |
---|---|---|
committer | Nate Begeman <natebegeman@mac.com> | 2008-05-12 19:40:03 +0000 |
commit | cfcb56091bfed1cade1a2eae0e4280915e858e65 (patch) | |
tree | c0bbcb4a9bb738d9d226f4ad4a383d9014ea8c05 /llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | 70613b84dab5aeba52260fc886a61442bb14c084 (diff) | |
download | bcm5719-llvm-cfcb56091bfed1cade1a2eae0e4280915e858e65.tar.gz bcm5719-llvm-cfcb56091bfed1cade1a2eae0e4280915e858e65.zip |
Add support for vicmp/vfcmp codegen, more legalize support coming.
This is necessary to unbreak the build.
llvm-svn: 50988
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 3d5a126df1b..d2fe4718da4 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -4383,6 +4383,7 @@ std::string SDNode::getOperationName(const SelectionDAG *G) const { case ISD::FGETSIGN: return "fgetsign"; case ISD::SETCC: return "setcc"; + case ISD::VSETCC: return "vsetcc"; case ISD::SELECT: return "select"; case ISD::SELECT_CC: return "select_cc"; case ISD::INSERT_VECTOR_ELT: return "insert_vector_elt"; |