From dd30e2c6775806d71cdc273fef21390deda9981f Mon Sep 17 00:00:00 2001 From: Nuno Lopes Date: Tue, 2 Sep 2008 10:10:14 +0000 Subject: [PATCH] add the other test case for completeness and to avoid regressions in the future llvm-svn: 55629 --- clang/test/Sema/init.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/clang/test/Sema/init.c b/clang/test/Sema/init.c index 10eed146a0d1..9f91c42f4461 100644 --- a/clang/test/Sema/init.c +++ b/clang/test/Sema/init.c @@ -64,5 +64,6 @@ struct sym_reg { char nc_gpreg; }; int sym_fw1a_scr[] = { - ((int)(&((struct sym_reg *)0)->nc_gpreg)) & 0 + ((int)(&((struct sym_reg *)0)->nc_gpreg)) & 0, + 8 * ((int)(&((struct sym_reg *)0)->nc_gpreg)) };