Make tree-ssa-strlen.c handle partial unterminated strings
[official-gcc.git] / gcc / testsuite / objc / execute / construct1.m
blob3de036dfdeecda3292b7938381174325632f52ed
1 int i;
3 void hello (void) __attribute__ ((constructor));
4 void hello (void) { i = 1; }
6 int main (void) {
7   if (i != 1)
8     return 1;
10   return 0;