diff options
author | Bernd Schmidt <bernds@codesourcery.com> | 2011-02-01 15:12:26 +0000 |
---|---|---|
committer | Bernd Schmidt <bernds@gcc.gnu.org> | 2011-02-01 15:12:26 +0000 |
commit | 4a3c9687cf64bce76107b63a31241a851c8ae119 (patch) | |
tree | 0ccde8ba714b6ec1d16606e546cf5fb9bb1fe9f9 /gcc/tree-dump.c | |
parent | 0f0a4367ab5ac7d0dd1fa8eb0acba3ddc063f619 (diff) | |
download | gcc-4a3c9687cf64bce76107b63a31241a851c8ae119.zip gcc-4a3c9687cf64bce76107b63a31241a851c8ae119.tar.gz gcc-4a3c9687cf64bce76107b63a31241a851c8ae119.tar.bz2 |
tree-dump.c (dump_option_value_info): Add entry for TDF_CSELIB.
* tree-dump.c (dump_option_value_info): Add entry for TDF_CSELIB.
* tree-pass.h (TDF_CSELIB): New macro.
* cselib.c (new_cselib_val, expand_loc, cselib_expand_value_rtx_1,
cselib_lookup): Check for it rather than for TDF_DETAILS.
From-SVN: r169482
Diffstat (limited to 'gcc/tree-dump.c')
-rw-r--r-- | gcc/tree-dump.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/tree-dump.c b/gcc/tree-dump.c index 7de0939..e5fce0e 100644 --- a/gcc/tree-dump.c +++ b/gcc/tree-dump.c @@ -1,6 +1,6 @@ /* Tree-dumping functionality for intermediate representation. Copyright (C) 1999, 2000, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, - 2010 Free Software Foundation, Inc. + 2010, 2011 Free Software Foundation, Inc. Written by Mark Mitchell <mark@codesourcery.com> This file is part of GCC. @@ -814,6 +814,7 @@ static const struct dump_option_value_info dump_options[] = {"raw", TDF_RAW}, {"graph", TDF_GRAPH}, {"details", TDF_DETAILS}, + {"cselib", TDF_CSELIB}, {"stats", TDF_STATS}, {"blocks", TDF_BLOCKS}, {"vops", TDF_VOPS}, |