diff options
| author | Jakub Staszak <kubastaszak@gmail.com> | 2013-08-06 16:40:40 +0000 |
|---|---|---|
| committer | Jakub Staszak <kubastaszak@gmail.com> | 2013-08-06 16:40:40 +0000 |
| commit | 340c780dd6f7425f7d50bd142901f2ec819743b8 (patch) | |
| tree | 245b8b824a25b0db1848fff113fccf013be215ae | |
| parent | 8fe0a3722ca9ee2f224543696c5890438c26624e (diff) | |
| download | bcm5719-llvm-340c780dd6f7425f7d50bd142901f2ec819743b8.tar.gz bcm5719-llvm-340c780dd6f7425f7d50bd142901f2ec819743b8.zip | |
Remove extraneous semicolon.
llvm-svn: 187806
| -rw-r--r-- | llvm/lib/Analysis/DependenceAnalysis.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/DependenceAnalysis.cpp b/llvm/lib/Analysis/DependenceAnalysis.cpp index 20576565a74..a0f1a69e138 100644 --- a/llvm/lib/Analysis/DependenceAnalysis.cpp +++ b/llvm/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(); |

