diff options
Diffstat (limited to 'gcc_arm/varasm.c')
-rwxr-xr-x | gcc_arm/varasm.c | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/gcc_arm/varasm.c b/gcc_arm/varasm.c index 04cd04f..cd73e90 100755 --- a/gcc_arm/varasm.c +++ b/gcc_arm/varasm.c @@ -998,17 +998,7 @@ assemble_start_function (decl, fnname) ASM_OUTPUT_FUNCTION_PREFIX (asm_out_file, fnname); #endif -#ifdef SDB_DEBUGGING_INFO - /* Output SDB definition of the function. */ - if (write_symbols == SDB_DEBUG) - sdbout_mark_begin_function (); -#endif -#ifdef DBX_DEBUGGING_INFO - /* Output DBX definition of the function. */ - if (write_symbols == DBX_DEBUG) - dbxout_begin_function (decl); -#endif /* Make function name accessible from other files, if appropriate. */ @@ -1294,19 +1284,6 @@ assemble_variable (decl, top_level, at_end, dont_output_data) return; TREE_ASM_WRITTEN (decl) = 1; -#if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO) - /* File-scope global variables are output here. */ - if ((write_symbols == DBX_DEBUG || write_symbols == XCOFF_DEBUG) - && top_level) - dbxout_symbol (decl, 0); -#endif -#ifdef SDB_DEBUGGING_INFO - if (write_symbols == SDB_DEBUG && top_level - /* Leave initialized global vars for end of compilation; - see comment in compile_file. */ - && (TREE_PUBLIC (decl) == 0 || DECL_INITIAL (decl) == 0)) - sdbout_symbol (decl, 0); -#endif /* Don't output any DWARF debugging information for variables here. In the case of local variables, the information for them is output @@ -1464,18 +1441,6 @@ assemble_variable (decl, top_level, at_end, dont_output_data) (decl, "requested alignment for %s is greater than implemented alignment of %d.",rounded); #endif -#ifdef DBX_DEBUGGING_INFO - /* File-scope global variables are output here. */ - if (write_symbols == DBX_DEBUG && top_level) - dbxout_symbol (decl, 0); -#endif -#ifdef SDB_DEBUGGING_INFO - if (write_symbols == SDB_DEBUG && top_level - /* Leave initialized global vars for end of compilation; - see comment in compile_file. */ - && (TREE_PUBLIC (decl) == 0 || DECL_INITIAL (decl) == 0)) - sdbout_symbol (decl, 0); -#endif /* Don't output any DWARF debugging information for variables here. In the case of local variables, the information for them is output @@ -1545,18 +1510,6 @@ assemble_variable (decl, top_level, at_end, dont_output_data) /* Output the dbx info now that we have chosen the section. */ -#ifdef DBX_DEBUGGING_INFO - /* File-scope global variables are output here. */ - if (write_symbols == DBX_DEBUG && top_level) - dbxout_symbol (decl, 0); -#endif -#ifdef SDB_DEBUGGING_INFO - if (write_symbols == SDB_DEBUG && top_level - /* Leave initialized global vars for end of compilation; - see comment in compile_file. */ - && (TREE_PUBLIC (decl) == 0 || DECL_INITIAL (decl) == 0)) - sdbout_symbol (decl, 0); -#endif /* Don't output any DWARF debugging information for variables here. In the case of local variables, the information for them is output |