summaryrefslogtreecommitdiff
path: root/gcc/dumpfile.h
diff options
context:
space:
mode:
authorsinghai <singhai@138bc75d-0d04-0410-961f-82ee72b054a4>2012-11-01 17:55:23 +0000
committersinghai <singhai@138bc75d-0d04-0410-961f-82ee72b054a4>2012-11-01 17:55:23 +0000
commit3fa73596dc757fc6096e18386f633a8503c82d94 (patch)
tree7dca8d4e05aa2c03c83def2768d3d0c43aff26f8 /gcc/dumpfile.h
parent4a2f7ea2232fe59ce880b4924dd72f1dd18d8746 (diff)
downloadgcc-3fa73596dc757fc6096e18386f633a8503c82d94.tar.gz
2012-11-01 Sharad Singhai <singhai@google.com>
PR other/55164 * dumpfile.h (struct dump_file_info): Fix order of flags. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@193064 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/dumpfile.h')
-rw-r--r--gcc/dumpfile.h2
1 files changed, 1 insertions, 1 deletions
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 */