From ef3c0c193ca1a16be465a735ada3026de61f9c61 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Wed, 18 Feb 2009 14:04:17 +0000 Subject: test/math/compile_test.c: make it exit with 0 always --- test/math/compile_test.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'test') 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; } -- cgit v1.2.3