From 325241c0deb7f2f1d81a0228dacd737ac2acde61 Mon Sep 17 00:00:00 2001 From: Christian Jullien Date: Sat, 22 Dec 2018 19:14:22 +0100 Subject: [PATCH] zfunc works again on ARM after Pursuer fix --- tests/tests2/07_function.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/tests/tests2/07_function.c b/tests/tests2/07_function.c index 8e63a08..006e0a7 100644 --- a/tests/tests2/07_function.c +++ b/tests/tests2/07_function.c @@ -15,18 +15,10 @@ void qfunc() printf("qfunc()\n"); } -#if !defined(__ARMEL__) -/* - * At least on ARM (like RPi), zfunc below fails with something like: - * +tcc: error: can't relocate value at 1ef93bc,1 - * Test is temporary removed for this architecture until ARM maintainers - * see what happens with this test. - */ void zfunc() { ((void (*)(void))0) (); } -#endif int main() {