From: Raja R Harinath Date: Wed, 19 May 1999 02:01:52 +0000 (-0600) Subject: 990519-1.c: New test. X-Git-Tag: releases/libgcj-2.95.0~466 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=89b17be8470cb041e1c3dd3bc596358c7570182f;p=thirdparty%2Fgcc.git 990519-1.c: New test. X * gcc.c-torture/compile/990519-1.c: New test. From-SVN: r27011 --- diff --git a/gcc/testsuite/gcc.c-torture/compile/990519-1.c b/gcc/testsuite/gcc.c-torture/compile/990519-1.c new file mode 100644 index 000000000000..9c1161782301 --- /dev/null +++ b/gcc/testsuite/gcc.c-torture/compile/990519-1.c @@ -0,0 +1,10 @@ + typedef int gboolean; + + typedef struct{ + gboolean names : 1; + gboolean types : 1; + } ParamOptions; + + int p_param(ParamOptions* o){ + return o->types && o->names; + }