diff --git a/test/Regression/LLC/badfuncptr.c b/test/Regression/LLC/badfuncptr.c index 8da7fbe3eb7..d0adf10ed5a 100644 --- a/test/Regression/LLC/badfuncptr.c +++ b/test/Regression/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; }