1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

Remove a useless assert.

llvm-svn: 175463
This commit is contained in:
Chad Rosier 2013-02-18 22:20:16 +00:00
parent 5babcb4a4b
commit 0914ae8db3

View File

@ -1377,7 +1377,6 @@ bool X86FastISel::TryEmitSmallMemcpy(X86AddressMode DestAM,
else if (Len >= 2)
VT = MVT::i16;
else {
assert(Len == 1);
VT = MVT::i8;
}