From: Jakub Staszak Date: Tue, 6 Aug 2013 16:40:40 +0000 (+0000) Subject: Remove extraneous semicolon. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=62d6fa5e8f9a3ffd270a6b08230ff61cae849dcf;p=oota-llvm.git Remove extraneous semicolon. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187806 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/DependenceAnalysis.cpp b/lib/Analysis/DependenceAnalysis.cpp index 20576565a74..a0f1a69e138 100644 --- a/lib/Analysis/DependenceAnalysis.cpp +++ b/lib/Analysis/DependenceAnalysis.cpp @@ -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();