diff options
author | Martin Liska <mliska@suse.cz> | 2017-01-13 13:56:54 +0100 |
---|---|---|
committer | Martin Liska <marxin@gcc.gnu.org> | 2017-01-13 12:56:54 +0000 |
commit | 77719b0675a248bcf9cb0876a86e80ca54979601 (patch) | |
tree | ee2c1eda6fcc5175948e6466e036b6bf04e1ee12 /gcc/function.h | |
parent | b1c95bb595d159b769409063df40414b9c830009 (diff) | |
download | gcc-77719b0675a248bcf9cb0876a86e80ca54979601.zip gcc-77719b0675a248bcf9cb0876a86e80ca54979601.tar.gz gcc-77719b0675a248bcf9cb0876a86e80ca54979601.tar.bz2 |
Reload global options when strict aliasing is dropped (PR ipa/79043).
2017-01-13 Martin Liska <mliska@suse.cz>
PR ipa/79043
* function.c (set_cfun): Add new argument force.
* function.h (set_cfun): Likewise.
* ipa-inline-transform.c (inline_call): Use the function when
strict alising from is dropped for function we inline to.
2017-01-13 Martin Liska <mliska@suse.cz>
PR ipa/79043
* gcc.c-torture/execute/pr79043.c: New test.
From-SVN: r244435
Diffstat (limited to 'gcc/function.h')
-rw-r--r-- | gcc/function.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/function.h b/gcc/function.h index fb3cbbc..fb8f57a 100644 --- a/gcc/function.h +++ b/gcc/function.h @@ -613,7 +613,7 @@ extern tree block_chainon (tree, tree); extern void number_blocks (tree); /* cfun shouldn't be set directly; use one of these functions instead. */ -extern void set_cfun (struct function *new_cfun); +extern void set_cfun (struct function *new_cfun, bool force = false); extern void push_cfun (struct function *new_cfun); extern void pop_cfun (void); |