From a9e9738724391cbdf9cc08eada2d394cefbc6905 Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Tue, 4 Dec 2007 16:51:45 +0000 Subject: [PATCH] test cparser's __func__ and friends [r16883] --- ir/be/test/functest.c | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 ir/be/test/functest.c 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; +} -- 2.20.1