Move 'break' to the right place to prevent fallthru. There is no test-case

because conditions in the next case prevented from doing anything nasty.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171549 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Jakub Staszak 2013-01-04 23:01:26 +00:00
parent b2e01b3707
commit 18d0f12aa8

View File

@ -1037,8 +1037,8 @@ bool X86DAGToDAGISel::MatchAddressRecursively(SDValue N, X86ISelAddressMode &AM,
AM.IndexReg = ShVal;
return false;
}
break;
}
break;
case ISD::SRL: {
// Scale must not be used already.