From 054ce39caf060408f6555bcd0b6d90b5bf4c00c5 Mon Sep 17 00:00:00 2001 From: xleroy Date: Wed, 8 May 2013 07:59:10 +0000 Subject: Missing case: initialization of a global variable of type _Bool. Added corresponding test case. git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@2242 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e --- test/regression/Makefile | 2 +- test/regression/Results/bool | 1 + test/regression/bool.c | 2 ++ 3 files changed, 4 insertions(+), 1 deletion(-) (limited to 'test') diff --git a/test/regression/Makefile b/test/regression/Makefile index 0d5e4c4..b0663b1 100644 --- a/test/regression/Makefile +++ b/test/regression/Makefile @@ -11,7 +11,7 @@ LIBS=$(LIBMATH) TESTS=int32 int64 floats floats-basics \ expr1 expr6 funptr2 initializers volatile1 volatile2 volatile3 \ funct3 expr5 struct7 struct8 struct11 casts1 casts2 char1 \ - sizeof1 sizeof2 binops + sizeof1 sizeof2 binops bool # Can run, but only in compiled mode, and have reference output in Results diff --git a/test/regression/Results/bool b/test/regression/Results/bool index 923c6e2..a8283b8 100644 --- a/test/regression/Results/bool +++ b/test/regression/Results/bool @@ -7,3 +7,4 @@ f = 0 g = 1 h = 1 i = 0 +y = 1 diff --git a/test/regression/bool.c b/test/regression/bool.c index 4f8ed80..e8d8b6e 100644 --- a/test/regression/bool.c +++ b/test/regression/bool.c @@ -3,6 +3,7 @@ #include int x = 42; +_Bool y = 777; int main() { @@ -25,5 +26,6 @@ int main() printf("g = %d\n", g); printf("h = %d\n", h); printf("i = %d\n", i); + printf("y = %d\n", y); return 0; } -- cgit v1.2.3