diff options
Diffstat (limited to 'gcc/target.h')
-rw-r--r-- | gcc/target.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gcc/target.h b/gcc/target.h index 130f387c9f1..b05a87dc274 100644 --- a/gcc/target.h +++ b/gcc/target.h @@ -119,6 +119,13 @@ struct gcc_target /* Output a destructor for a symbol with a given priority. */ void (* destructor) PARAMS ((rtx, int)); + + /* Output the assembler code for a thunk function. */ + void (* output_mi_thunk) PARAMS ((FILE *, tree, int, tree)); + + /* Output the assembler code for a thunk function with a vcall + offset. */ + void (* output_mi_vcall_thunk) PARAMS ((FILE *, tree, int, int, tree)); } asm_out; /* Functions relating to instruction scheduling. */ |