Eli points out that this is what report_fatal_error() is for.
llvm-svn: 138091
This commit is contained in:
parent
1c241f741e
commit
c1348074ec
|
|
@ -45,7 +45,8 @@ void DAGTypeLegalizer::ScalarizeVectorResult(SDNode *N, unsigned ResNo) {
|
|||
dbgs() << "\n";
|
||||
dbgs() << "Do not know how to scalarize the result of this operator!\n";
|
||||
#endif
|
||||
abort();
|
||||
report_fatal_error("Do not know how to scalarize the result of this "
|
||||
"operator!\n");
|
||||
|
||||
case ISD::BITCAST: R = ScalarizeVecRes_BITCAST(N); break;
|
||||
case ISD::BUILD_VECTOR: R = N->getOperand(0); break;
|
||||
|
|
|
|||
Loading…
Reference in New Issue