diff options
Diffstat (limited to 'gcc/cgraph.h')
-rw-r--r-- | gcc/cgraph.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/cgraph.h b/gcc/cgraph.h index 33b3167..2df3fa5 100644 --- a/gcc/cgraph.h +++ b/gcc/cgraph.h @@ -114,6 +114,10 @@ struct GTY(()) cgraph_local_info { Currently computed and used only by ipa-cp. */ unsigned versionable : 1; + /* False when function calling convention and signature can not be changed. + This is the case when __builtin_apply_args is used. */ + unsigned can_change_signature : 1; + /* True when function should be inlined independently on its size. */ unsigned disregard_inline_limits : 1; |