From: Michael Beck Date: Tue, 4 Dec 2007 16:51:45 +0000 (+0000) Subject: test cparser's __func__ and friends X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=a9e9738724391cbdf9cc08eada2d394cefbc6905;p=libfirm test cparser's __func__ and friends [r16883] --- diff --git a/ir/be/test/functest.c b/ir/be/test/functest.c new file mode 100644 index 000000000..c302a71d0 --- /dev/null +++ b/ir/be/test/functest.c @@ -0,0 +1,6 @@ +int main() { + printf("My __func__ name is %s\n", __func__); + printf("My __FUNCTION__name is %s\n", __FUNCTION__); + printf("My __PRETTY_FUNCTION__name is %s\n", __PRETTY_FUNCTION__); + return 0; +}