Remove assert, add comment.
authorEric Christopher <echristo@apple.com>
Wed, 29 Sep 2010 00:49:09 +0000 (00:49 +0000)
committerEric Christopher <echristo@apple.com>
Wed, 29 Sep 2010 00:49:09 +0000 (00:49 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@115009 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/ARM/ARMFastISel.cpp

index ff359eb12cc2877c3018411d60bac2b1fe74a3a4..6e245c32817d5457fadd97bcc0a6971b4aa74b19 100644 (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;