commit | 62d6fa5e8f9a3ffd270a6b08230ff61cae849dcf | [log] [tgz] |
---|---|---|
author | Jakub Staszak <kubastaszak@gmail.com> | Tue Aug 06 16:40:40 2013 +0000 |
committer | Jakub Staszak <kubastaszak@gmail.com> | Tue Aug 06 16:40:40 2013 +0000 |
tree | a45794981337b1ae0ccf0e3b960cf1a8ad91eb0a | |
parent | 4f7092176c3d3eaae0ea7af26aec2d77b3e4035f [diff] [blame] |
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 2057656..a0f1a69 100644 --- a/lib/Analysis/DependenceAnalysis.cpp +++ b/lib/Analysis/DependenceAnalysis.cpp
@@ -508,7 +508,7 @@ 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();