diff options
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG')
| -rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index eead526f099..9ba0d55b7a9 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp @@ -1444,6 +1444,11 @@ SDNode *SelectionDAGISel::Select_EH_LABEL(SDNode *N) {  }  void SelectionDAGISel::CannotYetSelect(SDNode *N) { +  if (N->getOpcode() == ISD::INTRINSIC_W_CHAIN || +      N->getOpcode() == ISD::INTRINSIC_WO_CHAIN || +      N->getOpcode() == ISD::INTRINSIC_VOID) +    return CannotYetSelectIntrinsic(N); +      std::string msg;    raw_string_ostream Msg(msg);    Msg << "Cannot yet select: "; | 

