diff options
Diffstat (limited to 'gcc/dbxout.c')
-rw-r--r-- | gcc/dbxout.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gcc/dbxout.c b/gcc/dbxout.c index 3561f434f41..e020d03f47a 100644 --- a/gcc/dbxout.c +++ b/gcc/dbxout.c @@ -400,7 +400,8 @@ const struct gcc_debug_hooks dbx_debug_hooks = debug_nothing_tree, /* deferred_inline_function */ debug_nothing_tree, /* outlining_inline_function */ debug_nothing_rtx, /* label */ - dbxout_handle_pch /* handle_pch */ + dbxout_handle_pch, /* handle_pch */ + debug_nothing_rtx /* var_location */ }; #endif /* DBX_DEBUGGING_INFO */ @@ -428,7 +429,8 @@ const struct gcc_debug_hooks xcoff_debug_hooks = debug_nothing_tree, /* deferred_inline_function */ debug_nothing_tree, /* outlining_inline_function */ debug_nothing_rtx, /* label */ - dbxout_handle_pch /* handle_pch */ + dbxout_handle_pch, /* handle_pch */ + debug_nothing_rtx /* var_location */ }; #endif /* XCOFF_DEBUGGING_INFO */ |