- split get_pairidx_for_regidx(), always called with constant parameter
[libfirm] / ir / be / test / fehler143.c
1 #include <assert.h>
2 #include <signal.h>
3 #include <unistd.h>
4
5 void f(int x)
6 {
7         assert(x < 0);
8 }
9
10 void handler(int sig)
11 {
12         (void)sig;
13         _exit(0);
14 }
15
16 int main(void)
17 {
18         signal(SIGABRT, handler);
19         f(1);
20         return 1;
21 }