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
b2fba9b7
Commit
b2fba9b7
authored
Oct 28, 1996
by
Joern Rennecke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(ASM_OUTPUT_BYTE): adjust definition to actual type of VALUE,
which is HOST_WIDE_INT. From-SVN: r13045
parent
57bc5ea0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletions
+3
-1
gcc/config/dsp16xx/dsp16xx.h
+3
-1
No files found.
gcc/config/dsp16xx/dsp16xx.h
View file @
b2fba9b7
...
@@ -1669,7 +1669,9 @@ const_section () \
...
@@ -1669,7 +1669,9 @@ const_section () \
#define ASM_OUTPUT_INT(FILE, EXP) asm_output_long(FILE,INTVAL(EXP))
#define ASM_OUTPUT_INT(FILE, EXP) asm_output_long(FILE,INTVAL(EXP))
/* This is how to output an assembler line for a numeric constant byte. */
/* This is how to output an assembler line for a numeric constant byte. */
#define ASM_OUTPUT_BYTE(FILE,VALUE) ASM_OUTPUT_CHAR(FILE,VALUE)
#define ASM_OUTPUT_BYTE(FILE,VALUE) \
fprintf ((FILE), "\tint %ld\n", (long)(VALUE))
/* This is how we output a 'c' character string. For the 16xx
/* This is how we output a 'c' character string. For the 16xx
assembler we have to do it one letter at a time */
assembler we have to do it one letter at a time */
...
...
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