PR preprocessor/59935 - caret diagnostics crashes on non-file locations
authorDodji Seketeli <dodji@gcc.gnu.org>
Tue, 28 Jan 2014 15:03:19 +0000 (16:03 +0100)
committerDodji Seketeli <dodji@gcc.gnu.org>
Tue, 28 Jan 2014 15:03:19 +0000 (16:03 +0100)
gcc/ChangeLog

* input.c (location_get_source_line): Bail out on when line number
is zero, and test the return value of
lookup_or_add_file_to_cache_tab.

gcc/testsuite/ChangeLog

* c-c++-common/cpp/warning-zero-location.c: New test.
* c-c++-common/cpp/warning-zero-location-2.c: Likewise.

Signed-off-by: Dodji Seketeli <dodji@seketeli.org>
From-SVN: r207195

gcc/ChangeLog
gcc/input.c
gcc/testsuite/ChangeLog
gcc/testsuite/c-c++-common/cpp/warning-zero-location-2.c [new file with mode: 0644]
gcc/testsuite/c-c++-common/cpp/warning-zero-location.c [new file with mode: 0644]

index 0dc6d605318f49906e93e70796a6ab4bc4c8d7d7..e802cba16194f07e1347cfa7195edd20100365d6 100644 (file)
@@ -1,3 +1,10 @@
+2014-01-28  Jakub Jelinek  <jakub@redhat.com>
+
+       PR preprocessor/59935
+       * input.c (location_get_source_line): Bail out on when line number
+       is zero, and test the return value of
+       lookup_or_add_file_to_cache_tab.
+
 2014-01-28  Richard Biener  <rguenther@suse.de>
 
        PR tree-optimization/58742
index 547c177b09ff58e79b9be9e0a8b32e8981ce4be6..63cd062ec5b276afc25e4239721285f56e29f11a 100644 (file)
@@ -698,7 +698,13 @@ location_get_source_line (expanded_location xloc,
   static char *buffer;
   static ssize_t len;
 
-  fcache * c = lookup_or_add_file_to_cache_tab (xloc.file);
+  if (xloc.line == 0)
+    return NULL;
+
+  fcache *c = lookup_or_add_file_to_cache_tab (xloc.file);
+  if (c == NULL)
+    return NULL;
+
   bool read = read_line_num (c, xloc.line, &buffer, &len);
 
   if (read && line_len)
index c85c2c23868b19d7373c037c1a6ea482bff89472..30cbfa6ab9a2da389f39356eb10da86b7d2526c2 100644 (file)
@@ -1,3 +1,9 @@
+2014-01-28  Dodji Seketeli  <dodji@redhat.com>
+
+       PR preprocessor/59935
+       * c-c++-common/cpp/warning-zero-location.c: New test.
+       * c-c++-common/cpp/warning-zero-location-2.c: Likewise.
+
 2014-01-27  Steve Ellcey  <sellcey@mips.com>
 
        * gcc.target/mips/pr52125.c: Add -mno-optgp option.
diff --git a/gcc/testsuite/c-c++-common/cpp/warning-zero-location-2.c b/gcc/testsuite/c-c++-common/cpp/warning-zero-location-2.c
new file mode 100644 (file)
index 0000000..c0e0bf7
--- /dev/null
@@ -0,0 +1,10 @@
+/*
+   { dg-options "-D _GNU_SOURCE -fdiagnostics-show-caret" }
+   { dg-do compile }
+ */
+
+#line 4636 "configure"
+#include <xxxxxxxxxxxx.h>
+int main() { return 0; }
+
+/* { dg-error "No such file or directory" { target *-*-* } 4636 } */
diff --git a/gcc/testsuite/c-c++-common/cpp/warning-zero-location.c b/gcc/testsuite/c-c++-common/cpp/warning-zero-location.c
new file mode 100644 (file)
index 0000000..ca2e102
--- /dev/null
@@ -0,0 +1,8 @@
+/*
+   { dg-options "-D _GNU_SOURCE -fdiagnostics-show-caret" }
+   { dg-do compile }
+ */
+
+#define _GNU_SOURCE    /* { dg-warning "redefined" } */
+
+/* { dg-message "" "#define _GNU_SOURCE" {target *-*-* } 0 }