diff options
Diffstat (limited to 'gcc/target.h')
-rw-r--r-- | gcc/target.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/target.h b/gcc/target.h index 9b64875fd94..97dd6d52bae 100644 --- a/gcc/target.h +++ b/gcc/target.h @@ -243,6 +243,10 @@ struct gcc_target /* True if EXP should be placed in a "small data" section. */ bool (* in_small_data_p) PARAMS ((tree)); + + /* Do something target-specific to record properties of the DECL into + the associated SYMBOL_REF. */ + void (* encode_section_info) PARAMS ((tree, int)); }; extern struct gcc_target targetm; |