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
f40176b1
Commit
f40176b1
authored
Sep 28, 1993
by
Paul Eggert
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(ASM_OUTPUT_SOURCE_FILENAME): Quote special characters in file names.
From-SVN: r5493
parent
a1c3672f
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
27 additions
and
7 deletions
+27
-7
gcc/config/elxsi/elxsi.h
+4
-1
gcc/config/m68k/3b1.h
+4
-1
gcc/config/m68k/crds.h
+4
-1
gcc/config/m68k/mot3300.h
+4
-1
gcc/config/m68k/tower-as.h
+3
-1
gcc/config/m88k/m88k.h
+4
-1
gcc/dwarfout.c
+4
-1
No files found.
gcc/config/elxsi/elxsi.h
View file @
f40176b1
...
...
@@ -727,7 +727,10 @@ enum reg_class { NO_REGS, GENERAL_REGS, ALL_REGS, LIM_REG_CLASSES };
/* Output the name of the file we are compiling. */
#define ASM_OUTPUT_SOURCE_FILENAME(STREAM, NAME) \
fprintf(STREAM, "\t.file\t\"%s\"\n", NAME);
do { fprintf (STREAM, "\t.file\t"); \
output_quoted_string (STREAM, NAME); \
fprintf (STREAM, "\n"); \
} while (0)
/* Output at beginning of assembler file. */
#define ASM_FILE_START(FILE) fprintf (FILE, "");
...
...
gcc/config/m68k/3b1.h
View file @
f40176b1
...
...
@@ -181,7 +181,10 @@ do { long l; \
/* The beginnings of sdb support... */
#define ASM_OUTPUT_SOURCE_FILENAME(FILE, FILENAME) \
fprintf (FILE, "\tfile\t\"%s\"\n", FILENAME)
do { fprintf (FILE, "\tfile\t"); \
output_quoted_string (FILE, FILENAME); \
fprintf (FILE, "\n"); \
} while (0)
#define ASM_OUTPUT_SOURCE_LINE(FILE, LINENO) \
fprintf (FILE, "\tln\t%d\n", \
...
...
gcc/config/m68k/crds.h
View file @
f40176b1
...
...
@@ -460,7 +460,10 @@ do { long l[2]; \
}}
#define ASM_OUTPUT_SOURCE_FILENAME(FILE, FILENAME) \
fprintf (FILE, "\t; file\t\"%s\"\n", FILENAME)
do { fprintf (FILE, "\t; file\t"); \
output_quoted_string (FILE, FILENAME); \
fprintf (FILE, "\n"); \
} while (0)
#define ASM_OUTPUT_SOURCE_LINE(FILE, LINENO) \
fprintf (FILE, "\t; ln\t%d\n", \
...
...
gcc/config/m68k/mot3300.h
View file @
f40176b1
...
...
@@ -386,7 +386,10 @@ do { long l; \
#undef ASM_OUTPUT_SOURCE_FILENAME
#define ASM_OUTPUT_SOURCE_FILENAME(FILE, FILENAME) \
fprintf (FILE, "\tfile\t\"%s\"\n", FILENAME)
do { fprintf (FILE, "\tfile\t"); \
output_quoted_string (FILE, FILENAME); \
fprintf (FILE, "\n"); \
} while (0)
#undef ASM_OUTPUT_SOURCE_LINE
#define ASM_OUTPUT_SOURCE_LINE(FILE, LINENO) \
...
...
gcc/config/m68k/tower-as.h
View file @
f40176b1
...
...
@@ -71,7 +71,9 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#define ASM_OUTPUT_SOURCE_FILENAME(FILE, FILENAME) \
do { \
fprintf (FILE, "\tfile\t\"%s\"\n", FILENAME); \
fprintf (FILE, "\tfile\t"); \
output_quoted_string (FILE, FILENAME); \
fprintf (FILE, "\n"); \
fprintf (FILE, "section ~init,\"x\"\n"); \
fprintf (FILE, "section ~fini,\"x\"\n"); \
fprintf (FILE, "section ~rodata,\"x\"\n"); \
...
...
gcc/config/m88k/m88k.h
View file @
f40176b1
...
...
@@ -1819,7 +1819,10 @@ enum reg_class { NO_REGS, AP_REG, XRF_REGS, GENERAL_REGS, AGRF_REGS,
#undef ASM_FILE_END
#define ASM_OUTPUT_SOURCE_FILENAME(FILE, NAME) \
fprintf (FILE, "\t%s\t \"%s\"\n", FILE_ASM_OP, NAME)
do { fprintf (FILE, "\t%s\t ", FILE_ASM_OP); \
output_quoted_string (FILE, NAME); \
fprintf (FILE, "\n"); \
} while (0)
#ifdef SDB_DEBUGGING_INFO
#define ASM_OUTPUT_SOURCE_LINE(FILE, LINE) \
...
...
gcc/dwarfout.c
View file @
f40176b1
...
...
@@ -578,7 +578,10 @@ static unsigned lookup_filename ();
#ifndef ASM_OUTPUT_SOURCE_FILENAME
#define ASM_OUTPUT_SOURCE_FILENAME(FILE,NAME) \
fprintf ((FILE), "\t%s\t\"%s\"\n", FILE_ASM_OP, NAME)
do { fprintf (FILE, "\t%s\t", FILE_ASM_OP); \
output_quoted_string (FILE, NAME); \
fputc ('\n', FILE); \
} while (0)
#endif
#ifndef ASM_OUTPUT_DEF
...
...
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