diff options
author | Sharad Singhai <singhai@google.com> | 2012-11-01 17:55:23 +0000 |
---|---|---|
committer | Sharad Singhai <singhai@gcc.gnu.org> | 2012-11-01 17:55:23 +0000 |
commit | eb1325a42d54328fba8dc5af0346ef9cdafbeef0 (patch) | |
tree | 7dca8d4e05aa2c03c83def2768d3d0c43aff26f8 | |
parent | f029f4be17d5b897de8abc53d76cf6c2a6239dde (diff) | |
download | gcc-eb1325a42d54328fba8dc5af0346ef9cdafbeef0.tar.gz |
re PR other/55164 (-fdump-*-all not working)
2012-11-01 Sharad Singhai <singhai@google.com>
PR other/55164
* dumpfile.h (struct dump_file_info): Fix order of flags.
From-SVN: r193064
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/dumpfile.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ed9fbafdfdf..156d3720af6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2012-11-01 Sharad Singhai <singhai@google.com> + + PR other/55164 + * dumpfile.h (struct dump_file_info): Fix order of flags. + 2012-11-01 Jan Hubicka <jh@suse.cz> PR middle-end/55104 diff --git a/gcc/dumpfile.h b/gcc/dumpfile.h index bcef9c6e337..9697a2c6f35 100644 --- a/gcc/dumpfile.h +++ b/gcc/dumpfile.h @@ -113,8 +113,8 @@ struct dump_file_info const char *alt_filename; /* filename for the -fopt-info stream */ FILE *pstream; /* pass-specific dump stream */ FILE *alt_stream; /* -fopt-info stream */ - int optgroup_flags; /* optgroup flags for -fopt-info */ int pflags; /* dump flags */ + int optgroup_flags; /* optgroup flags for -fopt-info */ int alt_flags; /* flags for opt-info */ int pstate; /* state of pass-specific stream */ int alt_state; /* state of the -fopt-info stream */ |