diff options
author | davidxl <davidxl@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-04-28 17:41:31 +0000 |
---|---|---|
committer | davidxl <davidxl@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-04-28 17:41:31 +0000 |
commit | a7d4604bc678dd3d354e0bc935550b0e0168ab59 (patch) | |
tree | 371e321349590c66d4a3929d9c841eb7fe2c2cfa /gcc/testsuite/gcc.dg/uninit-5.c | |
parent | 913fc649340a7c990e0bccc8481a8f2f23d8573b (diff) | |
download | gcc-a7d4604bc678dd3d354e0bc935550b0e0168ab59.tar.gz |
predicate aware uninitialized analysis
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@158835 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/testsuite/gcc.dg/uninit-5.c')
-rw-r--r-- | gcc/testsuite/gcc.dg/uninit-5.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gcc.dg/uninit-5.c b/gcc/testsuite/gcc.dg/uninit-5.c index ae7a8de7646..df2a27c4472 100644 --- a/gcc/testsuite/gcc.dg/uninit-5.c +++ b/gcc/testsuite/gcc.dg/uninit-5.c @@ -1,7 +1,7 @@ /* Spurious uninitialized-variable warnings. */ - +/* Disable jump threading, etc to test compiler analysis. */ /* { dg-do compile } */ -/* { dg-options "-O -Wuninitialized" } */ +/* { dg-options "-O -Wuninitialized -fno-tree-dce -fno-tree-vrp -fno-tree-dominator-opts" } */ extern void use(int); extern void foo(void); |