Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
32ec3c9d
Commit
32ec3c9d
authored
Mar 24, 1999
by
Mike Stump
Committed by
Mike Stump
Mar 24, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* arm/aout.h (DBX_OUTPUT_MAIN_SOURCE_FILENAME): Fix quoting.
From-SVN: r25945
parent
5c6e1aa1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
gcc/ChangeLog
+4
-0
gcc/config/arm/aout.h
+3
-2
No files found.
gcc/ChangeLog
View file @
32ec3c9d
1999
-
02
-
24
Mike
Stump
<
mrs
@wrs
.
com
>
*
arm
/
aout
.
h
(
DBX_OUTPUT_MAIN_SOURCE_FILENAME
)
:
Fix
quoting
.
1999
-
03
-
24
Jim
Blandy
<
jimb
@zwingli
.
cygnus
.
com
>
1999
-
03
-
24
Jim
Blandy
<
jimb
@zwingli
.
cygnus
.
com
>
*
libgcc2
.
c
(
__CTOR_LIST__
,
__DTOR_LIST__
)
:
Initialize
on
all
*
libgcc2
.
c
(
__CTOR_LIST__
,
__DTOR_LIST__
)
:
Initialize
on
all
...
...
gcc/config/arm/aout.h
View file @
32ec3c9d
...
@@ -118,8 +118,9 @@ Boston, MA 02111-1307, USA. */
...
@@ -118,8 +118,9 @@ Boston, MA 02111-1307, USA. */
``desc'' field is set to compiler version number >= 315 (sic). */
``desc'' field is set to compiler version number >= 315 (sic). */
#define DBX_OUTPUT_MAIN_SOURCE_FILENAME(STREAM,NAME) \
#define DBX_OUTPUT_MAIN_SOURCE_FILENAME(STREAM,NAME) \
do { \
do { \
fprintf (STREAM, ".stabs \"%s\",%d,0,315,%s\n", (NAME), N_SO, \
fprintf (STREAM, ".stabs "); \
<ext_label_name[1]); \
output_quoted_string (STREAM, NAME); \
fprintf (STREAM, ",%d,0,315,%s\n", N_SO, <ext_label_name[1]); \
text_section (); \
text_section (); \
ASM_OUTPUT_INTERNAL_LABEL (STREAM, "Ltext", 0); \
ASM_OUTPUT_INTERNAL_LABEL (STREAM, "Ltext", 0); \
} while (0)
} while (0)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment