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
This commit is contained in:
Sharad Singhai 2012-11-01 17:55:23 +00:00 committed by Sharad Singhai
parent f029f4be17
commit eb1325a42d
2 changed files with 6 additions and 1 deletions

View File

@ -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

View File

@ -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 */