summaryrefslogtreecommitdiff
path: root/gcc/opt-functions.awk
diff options
context:
space:
mode:
authoramylaar <amylaar@138bc75d-0d04-0410-961f-82ee72b054a4>2014-03-03 21:51:58 +0000
committeramylaar <amylaar@138bc75d-0d04-0410-961f-82ee72b054a4>2014-03-03 21:51:58 +0000
commitd8f2baf5a86438ff31f79d66d438f166c6754bd3 (patch)
tree73c4f0a31f7f2f93431e3d9c847daa3e61a1d8a1 /gcc/opt-functions.awk
parentaafa729b4f01ef19006bc6a6dd54119fa01b02c9 (diff)
downloadgcc-d8f2baf5a86438ff31f79d66d438f166c6754bd3.tar.gz
* opts.h (CL_PCH_IGNORE): Define.
* targhooks.c (option_affects_pch_p): Return false for options that have CL_PCH_IGNORE set. * opt-functions.awk: Process PchIgnore. * doc/options.texi: Document PchIgnore. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@208292 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/opt-functions.awk')
-rw-r--r--gcc/opt-functions.awk1
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/opt-functions.awk b/gcc/opt-functions.awk
index 4db2521612f..381bb50028a 100644
--- a/gcc/opt-functions.awk
+++ b/gcc/opt-functions.awk
@@ -97,6 +97,7 @@ function switch_flags (flags)
result = result \
test_flag("Common", flags, " | CL_COMMON") \
test_flag("Target", flags, " | CL_TARGET") \
+ test_flag("PchIgnore", flags, " | CL_PCH_IGNORE") \
test_flag("Driver", flags, " | CL_DRIVER") \
test_flag("Joined", flags, " | CL_JOINED") \
test_flag("JoinedOrMissing", flags, " | CL_JOINED") \