diff options
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/lto-opts.c | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fc908fe..f25b7ef 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,9 @@ 2018-05-30 Jan Hubicka <hubicka@ucw.cz> + * lto-opts.c (lto_write_options): Skip OPT_dumpdir, OPT_fresolution_. + +2018-05-30 Jan Hubicka <hubicka@ucw.cz> + * lto-wrapper.c (debug_objcopy): Add rename parameter; pass it down to simple_object_copy_lto_debug_sections. (run_gcc): Determine incremental LTO link time and configure diff --git a/gcc/lto-opts.c b/gcc/lto-opts.c index ea336ad..cc5f530 100644 --- a/gcc/lto-opts.c +++ b/gcc/lto-opts.c @@ -109,6 +109,8 @@ lto_write_options (void) case OPT_SPECIAL_ignore: case OPT_SPECIAL_program_name: case OPT_SPECIAL_input_file: + case OPT_dumpdir: + case OPT_fresolution_: continue; default: |