comparison gcc/testsuite/c-c++-common/pr36513-2.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children 84e7813d76e9
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
1 /* PR 36513: -Wlogical-op warns about strchr */
2 /* { dg-do compile } */
3 /* { dg-options "-Wlogical-op" } */
4 #ifdef __cplusplus
5 #include <cstring>
6 #else
7 #include <string.h>
8 #endif
9 int main2 ()
10 {
11 char *s, t;
12 strchr (s, t);
13 }