diff options
author | Thomas Koenig <tkoenig@gcc.gnu.org> | 2021-01-03 21:40:04 +0100 |
---|---|---|
committer | Thomas Koenig <tkoenig@gcc.gnu.org> | 2021-01-03 21:40:04 +0100 |
commit | afae4a55ccaa0de95ea11e5f634084db6ab2f444 (patch) | |
tree | d632cc867d10410ba9fb750523be790b86846ac4 /gcc/ipa-modref.h | |
parent | 9d9a82ec8478ff52c7a9d61f58cd2a7b6295b5f9 (diff) | |
parent | d2eb616a0f7bea78164912aa438c29fe1ef5774a (diff) | |
download | gcc-afae4a55ccaa0de95ea11e5f634084db6ab2f444.zip gcc-afae4a55ccaa0de95ea11e5f634084db6ab2f444.tar.gz gcc-afae4a55ccaa0de95ea11e5f634084db6ab2f444.tar.bz2 |
Merge branch 'master' into devel/coarray_native
Diffstat (limited to 'gcc/ipa-modref.h')
-rw-r--r-- | gcc/ipa-modref.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/ipa-modref.h b/gcc/ipa-modref.h index 8828104..7decabd 100644 --- a/gcc/ipa-modref.h +++ b/gcc/ipa-modref.h @@ -29,11 +29,13 @@ struct GTY(()) modref_summary /* Load and stores in function (transitively closed to all callees) */ modref_records *loads; modref_records *stores; + auto_vec<unsigned char> GTY((skip)) arg_flags; + bool writes_errno; modref_summary (); ~modref_summary (); void dump (FILE *); - bool useful_p (int ecf_flags); + bool useful_p (int ecf_flags, bool check_flags = true); }; modref_summary *get_modref_function_summary (cgraph_node *func); |