mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-01 02:33:44 +00:00
This is not actually unreachable, so don't use llvm_unreachable for it. Since
the intent seems to be to terminate even in Release builds, just use abort() directly. If program flow ever reaches a __builtin_unreachable (which llvm_unreachable is #define'd to on newer GCCs) then the program is undefined. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138068 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f2764c8908
commit
d133bf8f27
@ -43,8 +43,9 @@ void DAGTypeLegalizer::ScalarizeVectorResult(SDNode *N, unsigned ResNo) {
|
||||
dbgs() << "ScalarizeVectorResult #" << ResNo << ": ";
|
||||
N->dump(&DAG);
|
||||
dbgs() << "\n";
|
||||
dbgs() << "Do not know how to scalarize the result of this operator!\n";
|
||||
#endif
|
||||
llvm_unreachable("Do not know how to scalarize the result of this operator!");
|
||||
abort();
|
||||
|
||||
case ISD::BITCAST: R = ScalarizeVecRes_BITCAST(N); break;
|
||||
case ISD::BUILD_VECTOR: R = N->getOperand(0); break;
|
||||
|
Loading…
x
Reference in New Issue
Block a user