summaryrefslogtreecommitdiffstats
path: root/llvm
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
commit2c8e7f421cf054db6fd9826c212bc0faa409a518 (patch)
tree30f9afacc72ed3beff8aff63e0e7ddd3d36b79d5 /llvm
parentc35d7bbe436f825fd0fd08d6feeb76702a06fe3c (diff)
downloadbcm5719-llvm-2c8e7f421cf054db6fd9826c212bc0faa409a518.tar.gz
bcm5719-llvm-2c8e7f421cf054db6fd9826c212bc0faa409a518.zip
Remove assert, add comment.
llvm-svn: 115009
Diffstat (limited to 'llvm')
-rw-r--r--llvm/lib/Target/ARM/ARMFastISel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM/ARMFastISel.cpp b/llvm/lib/Target/ARM/ARMFastISel.cpp
index ff359eb12cc..6e245c32817 100644
--- a/llvm/lib/Target/ARM/ARMFastISel.cpp
+++ b/llvm/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;
OpenPOWER on IntegriCloud