teak-llvm/clang/test/Analysis/diagnostics/plist-multi-file.h
Artem Dergachev 21948346b3 [analyzer] Make plist-html diagnostic consumer produce multi-file reports.
Previously plist-html output produced multi-file HTML reports
but only single-file Plist reports.

Change plist-html output to produce multi-file Plist reports as well.

Differential Revision: https://reviews.llvm.org/D46902

llvm-svn: 332417
2018-05-16 00:11:24 +00:00

4 lines
115 B
C

void foo(int *ptr) {
*ptr = 1; // expected-warning{{Dereference of null pointer (loaded from variable 'ptr')}}
}