From 98de5b46039984759f236cf991b0eebd179e9411 Mon Sep 17 00:00:00 2001 From: Eric Christopher Date: Wed, 29 Sep 2010 00:49:09 +0000 Subject: [PATCH] Remove assert, add comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@115009 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/ARM/ARMFastISel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Target/ARM/ARMFastISel.cpp b/lib/Target/ARM/ARMFastISel.cpp index ff359eb12cc..6e245c32817 100644 --- a/lib/Target/ARM/ARMFastISel.cpp +++ b/lib/Target/ARM/ARMFastISel.cpp @@ -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;