summaryrefslogtreecommitdiff
path: root/test/regression/bool.c
diff options
context:
space:
mode:
authorGravatar xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2013-05-08 07:59:10 +0000
committerGravatar xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2013-05-08 07:59:10 +0000
commit054ce39caf060408f6555bcd0b6d90b5bf4c00c5 (patch)
treed65e5e2c2f352b5adbbf2442254e472ca1045797 /test/regression/bool.c
parente61e84579869cecd6ee0f4ac40d750eeedd6d80f (diff)
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
Diffstat (limited to 'test/regression/bool.c')
-rw-r--r--test/regression/bool.c2
1 files changed, 2 insertions, 0 deletions
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 <stdio.h>
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;
}