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 | b43e9c196542acc80c9e4643809661065710848f (patch) | |
tree | c9a051f8d4f23bd728271be046655591057750de /lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | e4fc1ccd4dd66a7421e911528c1af5337c20167b (diff) |
Add support for vicmp/vfcmp codegen, more legalize support coming.
This is necessary to unbreak the build.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50988 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 3d5a126df1..d2fe4718da 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/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"; |