[cfe-commits] r116994 - /cfe/trunk/test/Coverage/html-diagnostics.c

Andrew Trick atrick at apple.com
Wed Oct 20 20:59:06 PDT 2010


Author: atrick
Date: Wed Oct 20 22:59:06 2010
New Revision: 116994

URL: http://llvm.org/viewvc/llvm-project?rev=116994&view=rev
Log:
putback r116782, it's a safe fix and should not break windows

Modified:
    cfe/trunk/test/Coverage/html-diagnostics.c

Modified: cfe/trunk/test/Coverage/html-diagnostics.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Coverage/html-diagnostics.c?rev=116994&r1=116993&r2=116994&view=diff
==============================================================================
--- cfe/trunk/test/Coverage/html-diagnostics.c (original)
+++ cfe/trunk/test/Coverage/html-diagnostics.c Wed Oct 20 22:59:06 2010
@@ -3,7 +3,10 @@
 // RUN: cat %t/*.html | FileCheck %s
 
 // CHECK: <h3>Annotated Source Code</h3>
-// 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;





More information about the cfe-commits mailing list