aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/X86/X86FastISel.cpp
diff options
context:
space:
mode:
authorChad Rosier <mcrosier@apple.com>2013-02-18 22:20:16 +0000
committerChad Rosier <mcrosier@apple.com>2013-02-18 22:20:16 +0000
commit20ea2bc391bf72480998f456494011636dc19fea (patch)
tree735d2504889b4c645643d1ffdc9584540c82edf0 /lib/Target/X86/X86FastISel.cpp
parent69c65b0d938ca54ef3e5cfe6f65719c1a2f2f937 (diff)
downloadexternal_llvm-20ea2bc391bf72480998f456494011636dc19fea.zip
external_llvm-20ea2bc391bf72480998f456494011636dc19fea.tar.gz
external_llvm-20ea2bc391bf72480998f456494011636dc19fea.tar.bz2
Remove a useless assert.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@175463 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/X86FastISel.cpp')
-rw-r--r--lib/Target/X86/X86FastISel.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Target/X86/X86FastISel.cpp b/lib/Target/X86/X86FastISel.cpp
index 509095c..4e5430d 100644
--- a/lib/Target/X86/X86FastISel.cpp
+++ b/lib/Target/X86/X86FastISel.cpp
@@ -1377,7 +1377,6 @@ bool X86FastISel::TryEmitSmallMemcpy(X86AddressMode DestAM,
else if (Len >= 2)
VT = MVT::i16;
else {
- assert(Len == 1);
VT = MVT::i8;
}