diff options
author | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-01-25 05:34:46 +0000 |
---|---|---|
committer | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-01-25 05:34:46 +0000 |
commit | 4370e40135f3622cbee0caba30dd01961f9a9ef5 (patch) | |
tree | 8a6301ba18de04e8207e8f40f1842d864711b6de /gcc/config/dbxcoff.h | |
parent | 1766553185e3188b287552c88e9c2e51c5d00120 (diff) | |
download | gcc-4370e40135f3622cbee0caba30dd01961f9a9ef5.tar.gz |
Define DBX_USE_BINCL and DBX_CONTIN_LENGTH
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@11095 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/dbxcoff.h')
-rw-r--r-- | gcc/config/dbxcoff.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gcc/config/dbxcoff.h b/gcc/config/dbxcoff.h index 4617b0a673e..3e2fe347afe 100644 --- a/gcc/config/dbxcoff.h +++ b/gcc/config/dbxcoff.h @@ -66,3 +66,13 @@ Boston, MA 02111-1307, USA. */ fprintf (FILE, "\n.LM%d:\n", sym_lineno); \ sym_lineno += 1; \ } } + +/* When generating stabs debugging, use N_BINCL entries. */ + +#define DBX_USE_BINCL + +/* There is no limit to the length of stabs strings. */ + +#ifndef DBX_CONTIN_LENGTH +#define DBX_CONTIN_LENGTH 0 +#endif |