aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2006-02-14 19:45:56 +0000
committerEvan Cheng <evan.cheng@apple.com>2006-02-14 19:45:56 +0000
commitac940ab1bf21be40f74a83b202419a20ad2e279f (patch)
tree38ed9d84684c9b9af675613d2b95708b614fef57 /lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
parent80e89d7d6c02233a92d26bd4625e4188d48cbfa1 (diff)
Missed a break so memcpy cases fell through to memset. Doh.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26176 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp')
-rw-r--r--lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
index f6749e9307..a9d0cc03db 100644
--- a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
+++ b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
@@ -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)) {