Added test case for pbqp construction: There seems to be missing skip patterns, so...
[libfirm] / ir / be / test / functest.c
1 int main() {
2         printf("My __func__ name is %s\n", __func__);
3         printf("My __FUNCTION__name is %s\n", __FUNCTION__);
4         printf("My __PRETTY_FUNCTION__name is %s\n", __PRETTY_FUNCTION__);
5         return 0;
6 }