[llvm-commits] [llvm] r115009 - /llvm/trunk/lib/Target/ARM/ARMFastISel.cpp
Eric Christopher
echristo at apple.com
Tue Sep 28 17:49:10 PDT 2010
Author: echristo
Date: Tue Sep 28 19:49:09 2010
New Revision: 115009
URL: http://llvm.org/viewvc/llvm-project?rev=115009&view=rev
Log:
Remove assert, add comment.
Modified:
llvm/trunk/lib/Target/ARM/ARMFastISel.cpp
Modified: llvm/trunk/lib/Target/ARM/ARMFastISel.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/ARM/ARMFastISel.cpp?rev=115009&r1=115008&r2=115009&view=diff
==============================================================================
--- llvm/trunk/lib/Target/ARM/ARMFastISel.cpp (original)
+++ llvm/trunk/lib/Target/ARM/ARMFastISel.cpp Tue Sep 28 19:49:09 2010
@@ -562,7 +562,7 @@
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;
More information about the llvm-commits
mailing list