This is not actually unreachable, so don't use llvm_unreachable for it. Since
authorNick Lewycky <nicholas@mxc.ca>
Fri, 19 Aug 2011 20:14:27 +0000 (20:14 +0000)
committerNick Lewycky <nicholas@mxc.ca>
Fri, 19 Aug 2011 20:14:27 +0000 (20:14 +0000)
commitd133bf8f27af57c9ed807a033f2375d80bf644a2
treec15ee9dba32bb1526bdf0878c01f66041ff17e4f
parentf2764c89083183e0e5da800af18b23bc67937734
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
lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp