1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 19:52:54 +01:00

Remove assert, add comment.

llvm-svn: 115009
This commit is contained in:
Eric Christopher 2010-09-29 00:49:09 +00:00
parent 7fffe3cf58
commit c9ebc75b88

View File

@ -562,7 +562,7 @@ bool ARMFastISel::ARMEmitLoad(EVT VT, unsigned &ResultReg,
bool isFloat = false;
switch (VT.getSimpleVT().SimpleTy) {
default:
assert(false && "Trying to emit for an unhandled type!");
// This is mostly going to be Neon/vector support.
return false;
case MVT::i16:
Opc = isThumb ? ARM::tLDRH : ARM::LDRH;