diff options
Diffstat (limited to 'test/LLC/badfuncptr.c')
-rw-r--r-- | test/LLC/badfuncptr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/LLC/badfuncptr.c b/test/LLC/badfuncptr.c index 8da7fbe..d0adf10 100644 --- a/test/LLC/badfuncptr.c +++ b/test/LLC/badfuncptr.c @@ -69,6 +69,6 @@ void *HashLookup(unsigned int key, Hash hash) int main() { - printf("&HashLookup = 0x%p\n", HashLookup); + printf("&HashLookup = %d\n", !!HashLookup); return 0; } |