[PATCH] D63438: [analyzer] print() JSONify: ProgramPoint revision
Csaba Dabis via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Jun 17 15:59:48 PDT 2019
Charusso updated this revision to Diff 205209.
Charusso added a comment.
- Added a test case.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D63438/new/
https://reviews.llvm.org/D63438
Files:
clang/lib/Analysis/ProgramPoint.cpp
clang/test/Analysis/dump_egraph.c
Index: clang/test/Analysis/dump_egraph.c
===================================================================
--- clang/test/Analysis/dump_egraph.c
+++ clang/test/Analysis/dump_egraph.c
@@ -22,3 +22,5 @@
// CHECK: \"has_report\": true
+// CHECK: \"pretty\": \"*x\", \"location\": \{ \"line\": 16, \"column\": 10, \"file\": \"{{(.+)}}dump_egraph.c\" \}
+
Index: clang/lib/Analysis/ProgramPoint.cpp
===================================================================
--- clang/lib/Analysis/ProgramPoint.cpp
+++ clang/lib/Analysis/ProgramPoint.cpp
@@ -55,7 +55,8 @@
}
Out << "{ \"line\": " << SM.getExpansionLineNumber(Loc)
- << ", \"column\": " << SM.getExpansionColumnNumber(Loc) << " }";
+ << ", \"column\": " << SM.getExpansionColumnNumber(Loc)
+ << ", \"file\": \"" << SM.getFilename(Loc) << "\" }";
}
void ProgramPoint::printJson(llvm::raw_ostream &Out, const char *NL) const {
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D63438.205209.patch
Type: text/x-patch
Size: 912 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20190617/752421af/attachment-0001.bin>
More information about the cfe-commits
mailing list