analyzer: avoid using <string.h> in malloc-1.c

This test assumes that memset and strlen have been marked with
__attribute__((nonnull)), which isn't necessarily the case for an
arbitrary <string.h>.  This likely explains these failures:
  FAIL: gcc.dg/analyzer/malloc-1.c  (test for warnings, line 417)
  FAIL: gcc.dg/analyzer/malloc-1.c  (test for warnings, line 418)
  FAIL: gcc.dg/analyzer/malloc-1.c  (test for warnings, line 425)
  FAIL: gcc.dg/analyzer/malloc-1.c  (test for warnings, line 429)
seen in https://gcc.gnu.org/ml/gcc-testresults/2020-01/msg01608.html
on x86_64-apple-darwin18.

Fix it by using the __builtin_ forms.

gcc/testsuite/ChangeLog:
	* gcc.dg/analyzer/malloc-1.c: Remove include of <string.h>.
	Use __builtin_ forms of memset and strlen throughout.
This commit is contained in:
David Malcolm 2020-01-30 15:44:59 -05:00
parent e34ad101a4
commit 3e990d7954
2 changed files with 13 additions and 9 deletions

View File

@ -1,3 +1,8 @@
2020-01-30 David Malcolm <dmalcolm@redhat.com>
* gcc.dg/analyzer/malloc-1.c: Remove include of <string.h>.
Use __builtin_ forms of memset and strlen throughout.
2020-01-30 David Malcolm <dmalcolm@redhat.com>
* gcc.dg/analyzer/conditionals-2.c: Move to...

View File

@ -1,6 +1,5 @@
#include <alloca.h>
#include <stdlib.h>
#include <string.h>
extern int foo (void);
extern int bar (void);
@ -71,7 +70,7 @@ void test_7 (void)
void *ptr = malloc(4096);
if (!ptr)
return;
memset(ptr, 0, 4096);
__builtin_memset(ptr, 0, 4096);
free(ptr);
}
@ -80,7 +79,7 @@ void *test_8 (void)
void *ptr = malloc(4096);
if (!ptr)
return NULL;
memset(ptr, 0, 4096);
__builtin_memset(ptr, 0, 4096);
return ptr;
/* This needs phi nodes to affect equivalence classes, or we get a false report
of a leak. */
@ -398,7 +397,7 @@ int test_35 (void)
void *ptr = malloc(4096);
if (!ptr)
return -1;
memset(ptr, 0, 4096);
__builtin_memset(ptr, 0, 4096);
free(ptr);
return 0;
}
@ -408,14 +407,14 @@ void test_36 (void)
void *ptr = malloc(4096);
if (!ptr)
return;
memset(ptr, 0, 4096);
__builtin_memset(ptr, 0, 4096);
free(ptr);
}
void *test_37a (void)
{
void *ptr = malloc(4096); /* { dg-message "this call could return NULL" } */
memset(ptr, 0, 4096); /* { dg-warning "use of possibly-NULL 'ptr' where non-null expected" } */
__builtin_memset(ptr, 0, 4096); /* { dg-warning "use of possibly-NULL 'ptr' where non-null expected" } */
return ptr;
}
@ -424,9 +423,9 @@ int test_37b (void)
void *p = malloc(4096);
void *q = malloc(4096); /* { dg-message "this call could return NULL" } */
if (p) {
memset(p, 0, 4096); /* Not a bug: checked */
__builtin_memset(p, 0, 4096); /* Not a bug: checked */
} else {
memset(q, 0, 4096); /* { dg-warning "use of possibly-NULL 'q' where non-null expected" } */
__builtin_memset(q, 0, 4096); /* { dg-warning "use of possibly-NULL 'q' where non-null expected" } */
}
free(p);
free(q);
@ -579,7 +578,7 @@ int test_47 (void)
int retval = maybe_alloc (&p); /* this might write to "p". */
if (retval)
return (retval);
p_size = strlen(p); /* { dg-bogus "non-null expected" } */
p_size = __builtin_strlen(p); /* { dg-bogus "non-null expected" } */
free (p);
}
return p_size;