Remove extraneous semicolon.

llvm-svn: 187806
This commit is contained in:
Jakub Staszak 2013-08-06 16:40:40 +00:00
parent 8fe0a3722c
commit 340c780dd6
1 changed files with 1 additions and 1 deletions

View File

@ -508,7 +508,7 @@ bool DependenceAnalysis::intersectConstraints(Constraint *X,
APInt Xr = Xtop; // though they're just going to be overwritten
APInt::sdivrem(Xtop, Xbot, Xq, Xr);
APInt Yq = Ytop;
APInt Yr = Ytop;;
APInt Yr = Ytop;
APInt::sdivrem(Ytop, Ybot, Yq, Yr);
if (Xr != 0 || Yr != 0) {
X->setEmpty();