diff options
author | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-09-19 13:39:00 +0000 |
---|---|---|
committer | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-09-19 13:39:00 +0000 |
commit | 1e1d6495ab43ad83d7021ace50448ebb72444bf1 (patch) | |
tree | 838e12db256b9be4be6d0a7668e86a958d4fd5bd /gcc/common | |
parent | b5f0a1548adcd4b97ba70236ed9b37512cea6add (diff) | |
download | gcc-1e1d6495ab43ad83d7021ace50448ebb72444bf1.tar.gz |
2012-09-19 Basile Starynkevitch <basile@starynkevitch.net>
MELT branch merged with trunk rev 191468 using svnmerge.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/melt-branch@191473 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/common')
-rw-r--r-- | gcc/common/common-target.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gcc/common/common-target.h b/gcc/common/common-target.h index cd2d47c38bb..1ff3e45a347 100644 --- a/gcc/common/common-target.h +++ b/gcc/common/common-target.h @@ -33,10 +33,11 @@ enum opt_levels OPT_LEVELS_ALL, /* All levels (used by targets to disable options enabled in target-independent code). */ OPT_LEVELS_0_ONLY, /* -O0 only. */ - OPT_LEVELS_1_PLUS, /* -O1 and above, including -Os. */ - OPT_LEVELS_1_PLUS_SPEED_ONLY, /* -O1 and above, but not -Os. */ + OPT_LEVELS_1_PLUS, /* -O1 and above, including -Os and -Og. */ + OPT_LEVELS_1_PLUS_SPEED_ONLY, /* -O1 and above, but not -Os or -Og. */ + OPT_LEVELS_1_PLUS_NOT_DEBUG, /* -O1 and above, but not -Og. */ OPT_LEVELS_2_PLUS, /* -O2 and above, including -Os. */ - OPT_LEVELS_2_PLUS_SPEED_ONLY, /* -O2 and above, but not -Os. */ + OPT_LEVELS_2_PLUS_SPEED_ONLY, /* -O2 and above, but not -Os or -Og. */ OPT_LEVELS_3_PLUS, /* -O3 and above. */ OPT_LEVELS_3_PLUS_AND_SIZE, /* -O3 and above and -Os. */ OPT_LEVELS_SIZE, /* -Os only. */ |