From 118c148ec89dc0b53bb377cf637cfdcd800f06e5 Mon Sep 17 00:00:00 2001 From: xleroy Date: Thu, 8 Jul 2010 08:57:32 +0000 Subject: Bug in cparser/AddCasts.ml. git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@1376 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e --- test/regression/casts2.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 test/regression/casts2.c (limited to 'test/regression/casts2.c') diff --git a/test/regression/casts2.c b/test/regression/casts2.c new file mode 100644 index 00000000..b7620764 --- /dev/null +++ b/test/regression/casts2.c @@ -0,0 +1,16 @@ +#include +#include + +uint16_t func_46(void) +{ + int8_t l_48 = 0xA0; + return l_48; +} + +int main(void) +{ + int32_t t_3 = 0; + t_3 = func_46(); + printf("t_3 = %d\n", t_3); + return 0; +} -- cgit