From fa45f8d7f24c25b6bf8c2f478611f160cc7266f8 Mon Sep 17 00:00:00 2001 From: Richard Guenther Date: Thu, 7 Oct 2010 15:00:18 +0000 Subject: [PATCH] re PR tree-optimization/45732 (ICE: in bit_value_unop, at tree-ssa-ccp.c:1861 at -O1) 2010-10-07 Richard Guenther PR tree-optimization/45732 * gcc.dg/torture/pr45732.c: New testcase. From-SVN: r165120 --- gcc/testsuite/ChangeLog | 5 +++++ gcc/testsuite/gcc.dg/torture/pr45732.c | 10 ++++++++++ 2 files changed, 15 insertions(+) create mode 100644 gcc/testsuite/gcc.dg/torture/pr45732.c diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 2f1f761..a38c250 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2010-10-07 Richard Guenther + + PR tree-optimization/45732 + * gcc.dg/torture/pr45732.c: New testcase. + 2010-10-07 Iain Sandoe * objc.dg/foreach-1.m: Adjust for -fnext-runtime compatibility. diff --git a/gcc/testsuite/gcc.dg/torture/pr45732.c b/gcc/testsuite/gcc.dg/torture/pr45732.c new file mode 100644 index 0000000..04ceaa2 --- /dev/null +++ b/gcc/testsuite/gcc.dg/torture/pr45732.c @@ -0,0 +1,10 @@ +/* { dg-do compile } */ + +typedef char chars[5]; +const chars bad_chars[] = { "" }; + +int foo () +{ + const chars *c = bad_chars; + return c[0][0]; +} -- 2.7.4