Remove extraneous semicolon.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187806 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Jakub Staszak 2013-08-06 16:40:40 +00:00
parent 4f7092176c
commit 62d6fa5e8f

View File

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