diff options
author | Zancanaro; Carlo <czan8762@plang3.cs.usyd.edu.au> | 2012-11-01 20:02:14 +1100 |
---|---|---|
committer | Zancanaro; Carlo <czan8762@plang3.cs.usyd.edu.au> | 2012-11-01 20:02:14 +1100 |
commit | ff5ec13849a69ef4a53bab009eed880456931a14 (patch) | |
tree | 30e3930211163c7a032b53de9c2c9b44f26a1d27 /clang/lib/StaticAnalyzer/Checkers | |
parent | b7eaa99578037789a337c5061c0ea8ee3150b63c (diff) |
Fixing up some equation system stuff.
Adding function arguments to the system, as well as making it slightly easier
to read.
Diffstat (limited to 'clang/lib/StaticAnalyzer/Checkers')
l--------- | clang/lib/StaticAnalyzer/Checkers/.#IntervalTest.cpp | 1 | ||||
-rw-r--r-- | clang/lib/StaticAnalyzer/Checkers/IntervalTest.cpp | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/clang/lib/StaticAnalyzer/Checkers/.#IntervalTest.cpp b/clang/lib/StaticAnalyzer/Checkers/.#IntervalTest.cpp deleted file mode 120000 index 235903b..0000000 --- a/clang/lib/StaticAnalyzer/Checkers/.#IntervalTest.cpp +++ /dev/null @@ -1 +0,0 @@ -carlo@pc-4w14-0.cs.usyd.edu.au.1585:1347012043
\ No newline at end of file diff --git a/clang/lib/StaticAnalyzer/Checkers/IntervalTest.cpp b/clang/lib/StaticAnalyzer/Checkers/IntervalTest.cpp index 2f3e155..badb671 100644 --- a/clang/lib/StaticAnalyzer/Checkers/IntervalTest.cpp +++ b/clang/lib/StaticAnalyzer/Checkers/IntervalTest.cpp @@ -14,7 +14,7 @@ public: void checkASTCodeBody(const Decl *D, AnalysisManager& mgr, BugReporter &BR) const { if (IntervalAnalysis *a = mgr.getAnalysis<IntervalAnalysis>(D)) { - a->runOnAllBlocks(); + a->runOnAllBlocks(*D); } } }; |