Mercurial > hg > CbC > CbC_gcc
view gcc/testsuite/gcc.dg/pr40340-1.c @ 158:494b0b89df80 default tip
...
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 25 May 2020 18:13:55 +0900 |
parents | 1830386684a0 |
children |
line wrap: on
line source
/* PR middle-end/40340 */ /* { dg-do compile } */ /* { dg-options "-O2 -Wall -Wno-system-headers -fno-tree-dse" } */ #include "pr40340.h" static inline __attribute__ ((always_inline)) void test (char *p) { memset (p, 0, 6); } int main (void) { char buf[4]; test (buf); return 0; } /* { dg-warning "\\\[-Warray-bounds|-Wstringop-overflow" "" { target *-*-* } 10 } */ /* { dg-message "file included" "In file included" { target *-*-* } 0 } */