diff options
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/lto-wrapper.c | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8c8fbea..edb45ec 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2014-03-25 Richard Biener <rguenther@suse.de> + + * lto-wrapper.c (merge_and_complain): Handle OPT_fPIE like + OPT_fpie. + (run_gcc): Likewise. + 2014-03-25 Jakub Jelinek <jakub@redhat.com> * combine.c (simplify_compare_const): Add MODE argument. diff --git a/gcc/lto-wrapper.c b/gcc/lto-wrapper.c index 8e9a566..1607ab3 100644 --- a/gcc/lto-wrapper.c +++ b/gcc/lto-wrapper.c @@ -406,6 +406,7 @@ merge_and_complain (struct cl_decoded_option **decoded_options, /* Fallthru. */ case OPT_fPIC: case OPT_fpic: + case OPT_fPIE: case OPT_fpie: case OPT_fcommon: case OPT_fexceptions: @@ -671,6 +672,7 @@ run_gcc (unsigned argc, char *argv[]) { case OPT_fPIC: case OPT_fpic: + case OPT_fPIE: case OPT_fpie: case OPT_fcommon: case OPT_fexceptions: |