From a366642af4a9bd3ca0fe4b4ff4f221b671a76bb5 Mon Sep 17 00:00:00 2001 From: Andrew Trick Date: Thu, 21 Oct 2010 03:59:06 +0000 Subject: [PATCH] putback r116782, it's a safe fix and should not break windows git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@116994 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Coverage/html-diagnostics.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/Coverage/html-diagnostics.c b/test/Coverage/html-diagnostics.c index 81b2cfa588..be820fb90f 100644 --- a/test/Coverage/html-diagnostics.c +++ b/test/Coverage/html-diagnostics.c @@ -3,7 +3,10 @@ // RUN: cat %t/*.html | FileCheck %s // CHECK:

Annotated Source Code

-// CHECK: Dereference of null pointer + +// Without tweaking expr, the expr would hit to the line below +// emitted to the output as comment. +// CHECK: {{[D]ereference of null pointer}} void f0(int x) { int *p = &x; -- 2.50.1