diff options
Diffstat (limited to 'test/math/compile_test.c')
-rw-r--r-- | test/math/compile_test.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/math/compile_test.c b/test/math/compile_test.c index 4647b2381..361556a81 100644 --- a/test/math/compile_test.c +++ b/test/math/compile_test.c @@ -134,5 +134,6 @@ return r; int main(int argc, char **argv) { - return (long) &testf + (long) &testl; + /* Always 0 but gcc hopefully won't be able to notice */ + return 5 & ((long)&testf) & ((long)&testl) & 2; } |