From: Artem Dergachev Date: Wed, 27 Sep 2017 10:59:06 +0000 (+0000) Subject: [analyzer] Fix an outdated comment in a test. NFC. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a0d7ea7ad167665974775befd200847e5d84dd02;p=clang [analyzer] Fix an outdated comment in a test. NFC. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@314298 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Analysis/null-deref-path-notes.c b/test/Analysis/null-deref-path-notes.c index 8f9109bfdc..a1477a6226 100644 --- a/test/Analysis/null-deref-path-notes.c +++ b/test/Analysis/null-deref-path-notes.c @@ -1,8 +1,7 @@ // RUN: %clang_analyze_cc1 -w -x c -analyzer-checker=core -analyzer-output=text -verify %s // Avoid the crash when finding the expression for tracking the origins -// of the null pointer for path notes. Apparently, not much actual tracking -// needs to be done in this example. +// of the null pointer for path notes. void pr34373() { int *a = 0; // expected-note{{'a' initialized to a null pointer value}} (a + 0)[0]; // expected-warning{{Array access results in a null pointer dereference}}