2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / cmpdi-1.c
blob9e1b659c7cfdc97e88120b5488b940f1cd6081e0
1 f (long long d)
3 int i = 0;
4 if (d == 1)
5 i = 1;
6 return i;
9 g (long long d)
11 int i = 0;
12 if (d <= 0)
13 i = 1;
14 return i;