diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2000-05-12 06:16:30 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@redhat.com> | 2000-05-12 06:16:30 +0000 |
commit | e8b1cae53336a5b1fe005f05648cf1834d08726e (patch) | |
tree | e366eb4a729c7ff7f89d5f795f376ca603076250 /gas/config/tc-mn10300.h | |
parent | 9ee25201320def96d425eb8ac3d93aa2a61928d1 (diff) | |
download | gdb-e8b1cae53336a5b1fe005f05648cf1834d08726e.zip gdb-e8b1cae53336a5b1fe005f05648cf1834d08726e.tar.gz gdb-e8b1cae53336a5b1fe005f05648cf1834d08726e.tar.bz2 |
* config/tc-mn10300.h (md_end): Define.
(mn10300_finalize): Declare.
* config/tc-mn10300.c: Include dwarf2dbg.h.
(debug_line): Define.
(md_assemble): Generate dwarf2 line info.
(mn10300_finalize): New function. Finalize dwarf2 info.
Diffstat (limited to 'gas/config/tc-mn10300.h')
-rw-r--r-- | gas/config/tc-mn10300.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gas/config/tc-mn10300.h b/gas/config/tc-mn10300.h index ffcb227..011259f 100644 --- a/gas/config/tc-mn10300.h +++ b/gas/config/tc-mn10300.h @@ -1,5 +1,5 @@ /* tc-mn10300.h -- Header file for tc-mn10300.c. - Copyright (C) 1996, 1997 Free Software Foundation, Inc. + Copyright (C) 1996, 1997, 2000 Free Software Foundation, Inc. This file is part of GAS, the GNU Assembler. @@ -48,3 +48,6 @@ /* We do relaxing in the assembler as well as the linker. */ extern const struct relax_type md_relax_table[]; #define TC_GENERIC_RELAX_TABLE md_relax_table + +#define md_end() mn10300_finalize () +void mn10300_finalize PARAMS ((void)); |