Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.c-torture / execute / p18298.c
blob5aff51f5fabc3e717f296035e01fd2f254943ffd
1 #include <stdbool.h>
2 #include <stdlib.h>
3 int strcmp (const char*, const char*);
4 char s[2048] = "a";
5 inline bool foo(const char *str) {
6 return !strcmp(s,str);
8 int main() {
9 int i = 0;
10 while(!(foo(""))) {
11 i ++;
12 s[0] = '\0';
13 if (i>2)
14 abort ();
16 return 0;