This is a new test that fails on arm and probably other targets that have short enums by default:
FAIL: gcc.dg/tree-ssa/forwprop-26.c (test for excess errors) Excess errors: /src/gcc/gcc/testsuite/gcc.dg/tree-ssa/forwprop-26.c:13:22: error: width of 'code' exceeds its type gcc.dg/tree-ssa/forwprop-26.c: dump file does not exist This patch adds missing -fno-short-enums to dg-options. It fixes the test failure. Ok for trunk? Thanks, Greta gcc/testsuite/ChangeLog 2013-05-03 Greta Yorsh <greta.yo...@arm.com> * gcc.dg/tree-ssa/forwprop-26.c: Add -fno-short-enums to dg-options.
diff --git a/gcc/testsuite/gcc.dg/tree-ssa/forwprop-26.c b/gcc/testsuite/gcc.dg/tree-ssa/forwprop-26.c index 14821af..108b1bc 100644 --- a/gcc/testsuite/gcc.dg/tree-ssa/forwprop-26.c +++ b/gcc/testsuite/gcc.dg/tree-ssa/forwprop-26.c @@ -1,5 +1,5 @@ /* { dg-do compile } */ -/* { dg-options "-O2 -fdump-tree-forwprop1" } */ +/* { dg-options "-O2 -fdump-tree-forwprop1 -fno-short-enums" } */ union tree_node; typedef union tree_node *tree;