From 0c805fe28e5ebdf4890dd42f5c12a85ee61bafc5 Mon Sep 17 00:00:00 2001 From: xleroy Date: Sat, 20 Apr 2013 08:42:06 +0000 Subject: Tests "floats" and "floats-basics" moved from test/c to test/regression git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@2202 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e --- test/regression/bool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/regression/bool.c') diff --git a/test/regression/bool.c b/test/regression/bool.c index d2b38572..4f8ed809 100644 --- a/test/regression/bool.c +++ b/test/regression/bool.c @@ -9,7 +9,7 @@ int main() _Bool a, b, c, d, e, f, g, h, i; a = x; b = x >= 100; - c = &x; + c = (_Bool) &x; d = a && b; e = a || b; f = a & b; -- cgit