summaryrefslogtreecommitdiff
path: root/gcc/opt-functions.awk
diff options
context:
space:
mode:
authorJoern Rennecke <joern.rennecke@embecosm.com>2014-03-03 21:51:58 +0000
committerJoern Rennecke <amylaar@gcc.gnu.org>2014-03-03 21:51:58 +0000
commit212bfe71ed5aa782df8d5e5b22b915b65380f9e0 (patch)
tree73c4f0a31f7f2f93431e3d9c847daa3e61a1d8a1 /gcc/opt-functions.awk
parenta42a7046ebd930b41804819dedaecef252b89e72 (diff)
opts.h (CL_PCH_IGNORE): Define.
* 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. From-SVN: r208292
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") \