view src/test.c @ 4:8855f7d934ae

Get name of functions before exceuting all_passes
author Thinker K.F. Li <thinker@codemud.net>
date Wed, 08 Sep 2010 17:46:29 +0800
parents bb756f67f264
children 165781cb4cdd
line wrap: on
line source

#include <stdio.h>

int value(int a) {
    return a + 1;
}

int
main(int argc, const char *argv[]) {
    printf("test %d\n", value(12));
    return 0;
}