comparison gcc/testsuite/gcc.c-torture/compile/pr34029-2.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
1 static const char s[] = "ab.cd.efghijk";
2 static const char t[] = "abcde";
3
4 long
5 foo (const char *x)
6 {
7 const char *a;
8 long b = 0;
9
10 a = __builtin_strchr (s, '.');
11 return ((long) a) + (1 - (long) t);
12 }