- fixed comment: bs cannot be NULL anymore (and was never NULL previously)
[libfirm] / ir / be / test / fehler102.c
1 /*$ -fdeconv -fif-conv $*/
2
3 char abs_Bs(char x)
4 {
5  if (x < 0) x *= -1;
6  return x;
7 }
8
9 char c = -23;
10
11 int main(void)
12 {
13         printf("%d\n", abs_Bs(c));
14 }