r375189 - [analyzer] exploded-graph-rewriter: Fix typo in r375186. Unbreaks tests.
Artem Dergachev via cfe-commits
cfe-commits at lists.llvm.org
Thu Oct 17 16:27:35 PDT 2019
Author: dergachev
Date: Thu Oct 17 16:27:35 2019
New Revision: 375189
URL: http://llvm.org/viewvc/llvm-project?rev=375189&view=rev
Log:
[analyzer] exploded-graph-rewriter: Fix typo in r375186. Unbreaks tests.
Modified:
cfe/trunk/test/Analysis/dump_egraph.c
Modified: cfe/trunk/test/Analysis/dump_egraph.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Analysis/dump_egraph.c?rev=375189&r1=375188&r2=375189&view=diff
==============================================================================
--- cfe/trunk/test/Analysis/dump_egraph.c (original)
+++ cfe/trunk/test/Analysis/dump_egraph.c Thu Oct 17 16:27:35 2019
@@ -18,7 +18,7 @@ int foo() {
return *x + *y;
}
-// CHECK: \"program_points\": [\l \{ \"kind\": \"Edge\", \"src_id\": 2, \"dst_id\": 1, \"terminator\": null, \"term_kind\": null, \"tag\": null, \"node_id\": 1, \"is_sink\":0, \"has_report\": 0 \}\l ],\l \"program_state\": null
+// CHECK: \"program_points\": [\l \{ \"kind\": \"Edge\", \"src_id\": 2, \"dst_id\": 1, \"terminator\": null, \"term_kind\": null, \"tag\": null, \"node_id\": 1, \"is_sink\": 0, \"has_report\": 0 \}\l ],\l \"program_state\": null
// CHECK: \"program_points\": [\l \{ \"kind\": \"BlockEntrance\", \"block_id\": 1
More information about the cfe-commits
mailing list