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
d07ecc3b
Commit
d07ecc3b
authored
25 years ago
by
Gerald Pfeifer
Committed by
Gerald Pfeifer
25 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* defaults.h (ASM_OUTPUT_ASCII): Use ISDIGIT.
From-SVN: r31433
parent
f2aabbd8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
gcc/ChangeLog
+4
-0
gcc/defaults.h
+1
-2
No files found.
gcc/ChangeLog
View file @
d07ecc3b
2000
-
01
-
15
Gerald
Pfeifer
<
pfeifer
@dbai
.
tuwien
.
ac
.
at
>
*
defaults
.
h
(
ASM_OUTPUT_ASCII
)
:
Use
ISDIGIT
.
2000
-
01
-
14
Nathan
Sidwell
<
sidwell
@codesourcery
.
com
>
*
config
.
in
:
Rebuilt
for
2000
-
01
-
13
change
to
acconfig
.
h
.
...
...
This diff is collapsed.
Click to expand it.
gcc/defaults.h
View file @
d07ecc3b
...
...
@@ -90,8 +90,7 @@ do { ASM_OUTPUT_LABEL(FILE,LABEL_ALTERNATE_NAME (INSN)); } while (0)
The Vax assembler fails to stop reading the escape \
after three digits, so this is the only way we \
can get it to parse the data properly. */
\
if (i < thissize - 1 \
&& p[i + 1] >= '0' && p[i + 1] <= '9') \
if (i < thissize - 1 && ISDIGIT(p[i + 1])) \
fprintf (asm_out_file, "\"\n\t.ascii \""); \
} \
} \
...
...
This diff is collapsed.
Click to expand it.
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