diff options
Diffstat (limited to 'gcc/langhooks.c')
| -rw-r--r-- | gcc/langhooks.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gcc/langhooks.c b/gcc/langhooks.c index a976d748029..6be5304a328 100644 --- a/gcc/langhooks.c +++ b/gcc/langhooks.c @@ -277,6 +277,18 @@ lhd_tree_inlining_end_inlining (fn) { } +/* lang_hooks.tree_inlining.convert_parm_for_inlining performs any + language-specific conversion before assigning VALUE to PARM. */ + +tree +lhd_tree_inlining_convert_parm_for_inlining (parm, value, fndecl) + tree parm ATTRIBUTE_UNUSED; + tree value; + tree fndecl ATTRIBUTE_UNUSED; +{ + return value; +} + /* lang_hooks.tree_dump.dump_tree: Dump language-specific parts of tree nodes. Returns non-zero if it does not want the usual dumping of the second argument. */ |

