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
252043ee
Commit
252043ee
authored
Apr 25, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r826
parent
c785c660
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
4 deletions
+5
-4
gcc/assert.h
+3
-3
gcc/config/svr4.h
+2
-1
No files found.
gcc/assert.h
View file @
252043ee
...
...
@@ -13,7 +13,7 @@
((void) ((expression) ? 0 : __assert (expression, __FILE__, __LINE__)))
#define __assert(expression, file, lineno) \
(printf ("%s:%
d
: failed assertion\n", file, lineno), \
(printf ("%s:%
u
: failed assertion\n", file, lineno), \
abort (), 0)
#else
...
...
@@ -27,7 +27,7 @@ extern void __eprintf (const char *, const char *, int, const char *);
((void) ((expression) ? 0 : __assert (#expression, __FILE__, __LINE__)))
#define __assert(expression, file, line) \
(__eprintf ("%s:%
d
: failed assertion `%s'\n", \
(__eprintf ("%s:%
u
: failed assertion `%s'\n", \
file, line, expression), 0)
#else
/* no __STDC__; i.e. -traditional. */
...
...
@@ -38,7 +38,7 @@ extern void __eprintf (); /* Defined in libgcc.a */
((void) ((expression) ? 0 : __assert (expression, __FILE__, __LINE__)))
#define __assert(expression, file, lineno) \
(__eprintf ("%s:%
d
: failed assertion `%s'\n", \
(__eprintf ("%s:%
u
: failed assertion `%s'\n", \
file, lineno, "expression"), 0)
#endif
/* no __STDC__; i.e. -traditional. */
...
...
gcc/config/svr4.h
View file @
252043ee
...
...
@@ -499,6 +499,7 @@ dtors_section () \
#define TYPE_ASM_OP ".type"
#define SIZE_ASM_OP ".size"
#define WEAK_ASM_OP ".weak"
/* The following macro defines the format used to output the second
operand of the .type assembler directive. Different svr4 assemblers
...
...
@@ -570,7 +571,7 @@ dtors_section () \
fprintf (FILE, ","); \
assemble_name (FILE, label); \
fprintf (FILE, "-"); \
ASM_OUTPUT_LABELREF (FILE, (FNAME));
\
assemble_name (FILE, (FNAME));
\
putc ('\n', FILE); \
} \
} 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