projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
80e89d7
)
Missed a break so memcpy cases fell through to memset. Doh.
author
Evan Cheng
<evan.cheng@apple.com>
Tue, 14 Feb 2006 19:45:56 +0000
(19:45 +0000)
committer
Evan Cheng
<evan.cheng@apple.com>
Tue, 14 Feb 2006 19:45:56 +0000
(19:45 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26176
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
patch
|
blob
|
history
diff --git
a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
index f6749e93073c898a4720e243315b67cec771a0ee..a9d0cc03db9f21c42fcfdebca8a435dad4c2f3e7 100644
(file)
--- 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)) {