Commit 5bcb3f13 by Jason Merrill

x

From-SVN: r13957
parent f76b8156
...@@ -2792,9 +2792,13 @@ extern struct rtx_def *legitimize_pic_address (); ...@@ -2792,9 +2792,13 @@ extern struct rtx_def *legitimize_pic_address ();
#define DBX_REGISTER_NUMBER(REGNO) (REGNO) #define DBX_REGISTER_NUMBER(REGNO) (REGNO)
/* On Sun 4, this limit is 2048. We use 1500 to be safe, /* On Sun 4, this limit is 2048. We use 1000 to be safe, since the length
since the length can run past this up to a continuation point. */ can run past this up to a continuation point. Once we used 1500, but
#define DBX_CONTIN_LENGTH 1500 a single entry in C++ can run more than 500 bytes, due to the length of
mangled symbol names. dbxout.c should really be fixed to do
continuations when they are actually needed instead of trying to
guess... */
#define DBX_CONTIN_LENGTH 1000
/* This is how to output a note to DBX telling it the line number /* This is how to output a note to DBX telling it the line number
to which the following sequence of instructions corresponds. to which the following sequence of instructions corresponds.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment