2008-11-15 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20030203-1.c
blob3ce3d611ef6e3456f6ab3d88f724f63dd05338e7
1 void f(int);
2 int do_layer3(int single)
4 int stereo1;
6 if(single >= 0) /* stream is stereo, but force to mono */
7 stereo1 = 1;
8 else
9 stereo1 = 2;
10 f(single);
12 return stereo1;
15 extern void abort ();
16 int main()
18 if (do_layer3(-1) != 2)
19 abort ();
20 return 0;
23 void f(int i) {}