summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2010-09-29 00:49:09 +0000
committerEric Christopher <echristo@apple.com>2010-09-29 00:49:09 +0000
commit98de5b46039984759f236cf991b0eebd179e9411 (patch)
treeea88043e3f3f699d644961a343e95e606d8ead61 /lib
parent7e1bf305cfecbaee859405468b769650efe68f1a (diff)
downloadllvm-98de5b46039984759f236cf991b0eebd179e9411.tar.gz
llvm-98de5b46039984759f236cf991b0eebd179e9411.tar.bz2
llvm-98de5b46039984759f236cf991b0eebd179e9411.tar.xz
Remove assert, add comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@115009 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Target/ARM/ARMFastISel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/ARM/ARMFastISel.cpp b/lib/Target/ARM/ARMFastISel.cpp
index ff359eb12c..6e245c3281 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;