1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00

Missed a break so memcpy cases fell through to memset. Doh.

llvm-svn: 26176
This commit is contained in:
Evan Cheng 2006-02-14 19:45:56 +00:00
parent 57eebe8ab4
commit 8937c047b3

View File

@ -1631,7 +1631,7 @@ void SelectionDAGLowering::visitMemIntrinsic(CallInst &I, unsigned Op) {
// if the size operand falls below a certain threshold.
std::vector<SDOperand> OutChains;
switch (Op) {
default: ; // Do nothing for now.
default: break; // Do nothing for now.
case ISD::MEMSET: {
if (MeetMaxMemopRequirement(MemOps, TLI.getMaxStoresPerMemset(),
Size->getValue(), Align, TLI)) {