re PR middle-end/78858 (Bogus -Wnonnull warning involving strcmp with -fsanitize...
authorJakub Jelinek <jakub@redhat.com>
Thu, 22 Dec 2016 11:48:39 +0000 (12:48 +0100)
committerJakub Jelinek <jakub@gcc.gnu.org>
Thu, 22 Dec 2016 11:48:39 +0000 (12:48 +0100)
PR middle-end/78858
* c-c++-common/ubsan/pr78858.c: New test.
* gcc.dg/nonnull-5.c: New test.

From-SVN: r243884

gcc/testsuite/ChangeLog
gcc/testsuite/c-c++-common/ubsan/pr78858.c [new file with mode: 0644]
gcc/testsuite/gcc.dg/nonnull-5.c [new file with mode: 0644]

index 3a704c58537bba99e4437473cee4e93c3e6e437d..33908d5e803468ad1c53b4a48f7cb36e1f167e08 100644 (file)
@@ -1,3 +1,9 @@
+2016-12-22  Jakub Jelinek  <jakub@redhat.com>
+
+       PR middle-end/78858
+       * c-c++-common/ubsan/pr78858.c: New test.
+       * gcc.dg/nonnull-5.c: New test.
+
 2016-12-21  Jakub Jelinek  <jakub@redhat.com>
 
        PR c++/72707
diff --git a/gcc/testsuite/c-c++-common/ubsan/pr78858.c b/gcc/testsuite/c-c++-common/ubsan/pr78858.c
new file mode 100644 (file)
index 0000000..ad0af42
--- /dev/null
@@ -0,0 +1,10 @@
+/* PR middle-end/78858 */
+/* { dg-do compile } */
+/* { dg-options "-fsanitize=undefined -Wnonnull" } */
+
+void
+foo (char **x, const char *y)
+{
+  *x = (char *) __builtin_malloc (__builtin_strlen (y) + 1);   /* { dg-bogus "argument 1 null where non-null expected" } */
+  __builtin_strcpy (*x, y);
+}
diff --git a/gcc/testsuite/gcc.dg/nonnull-5.c b/gcc/testsuite/gcc.dg/nonnull-5.c
new file mode 100644 (file)
index 0000000..ba52fe3
--- /dev/null
@@ -0,0 +1,11 @@
+/* Reduced from https://sourceware.org/bugzilla/show_bug.cgi?id=20978 */
+/* { dg-do compile } */
+/* { dg-options "-O2 -Wnonnull" } */
+
+int
+foo (const char *name)
+{
+  if (name)
+    return 6;
+  return __builtin_strlen (name);      /* { dg-warning "argument 1 null where non-null expected" } */
+}