Remove extraneous semicolon.
authorJakub Staszak <kubastaszak@gmail.com>
Tue, 6 Aug 2013 16:40:40 +0000 (16:40 +0000)
committerJakub Staszak <kubastaszak@gmail.com>
Tue, 6 Aug 2013 16:40:40 +0000 (16:40 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187806 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/DependenceAnalysis.cpp

index 20576565a74eb1f5d08483b5f7262014af3acaf9..a0f1a69e13896b405c098b9cc65bc601a8765a82 100644 (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();