- Spillslot coalescing now collects all nodes that have class spill/reload
[libfirm] / ir / be / test / andtest.c
1 #include <stdio.h>
2
3 static int test(int a, int i)
4 {
5         a &= ~(1 << (i & 0x0000001F));
6         return a;
7 }
8
9 int A = 15;
10 int I = 3;
11
12 int main()
13 {
14         printf("test(%d, %d) = %d\n", A, I, test(A,I));
15
16         return 0;
17 }