diff options
| author | Ted Kremenek <kremenek@apple.com> | 2010-09-02 00:56:20 +0000 |
|---|---|---|
| committer | Ted Kremenek <kremenek@apple.com> | 2010-09-02 00:56:20 +0000 |
| commit | 07343c02bee77d0caa26578f6b5cf4b3dc8a2a85 (patch) | |
| tree | 6aecea96e844923074a508beeb4332747bca7f6e /clang/test | |
| parent | 74487fcbe7abe3b582e4cd1b1a87af3f57204f0d (diff) | |
| download | bcm5719-llvm-07343c02bee77d0caa26578f6b5cf4b3dc8a2a85.tar.gz bcm5719-llvm-07343c02bee77d0caa26578f6b5cf4b3dc8a2a85.zip | |
For GRExprEngine::EvalBind() (and called visitors), unifiy StoreE and AssignE. Now StoreE (const Stmt*) represents the expression where the store took place, which is the assignment expression if it takes place in an assignment. This removes some conceptual dissidence as well as removes an extra parameter from the Checker::PreVisitBind() visitor. It also improves ranges and source location information in analyzer diagnostics.
llvm-svn: 112789
Diffstat (limited to 'clang/test')
| -rw-r--r-- | clang/test/Analysis/plist-output.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Analysis/plist-output.m b/clang/test/Analysis/plist-output.m index aa866de03c1..95faa06a063 100644 --- a/clang/test/Analysis/plist-output.m +++ b/clang/test/Analysis/plist-output.m @@ -205,7 +205,7 @@ void test_null_field(void) { // CHECK: </dict> // CHECK: <dict> // CHECK: <key>line</key><integer>10</integer> -// CHECK: <key>col</key><integer>3</integer> +// CHECK: <key>col</key><integer>7</integer> // CHECK: <key>file</key><integer>0</integer> // CHECK: </dict> // CHECK: </array> |

