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
bdbfbe18
Commit
bdbfbe18
authored
Jul 28, 1994
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(FUNCTION_VALUE): New override.
From-SVN: r7812
parent
9cad7616
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
+13
-0
gcc/config/m68k/atari.h
+13
-0
No files found.
gcc/config/m68k/atari.h
View file @
bdbfbe18
...
@@ -98,3 +98,16 @@ int switch_table_difference_label_flag;
...
@@ -98,3 +98,16 @@ int switch_table_difference_label_flag;
asm_fprintf (FILE, "%s%%%d:\n", PREFIX, NUM); \
asm_fprintf (FILE, "%s%%%d:\n", PREFIX, NUM); \
else \
else \
asm_fprintf (FILE, "%0L%s%d:\n", PREFIX, NUM)
asm_fprintf (FILE, "%0L%s%d:\n", PREFIX, NUM)
/* Define how to generate (in the callee) the output value of a function
and how to find (in the caller) the value returned by a function. VALTYPE
is the data type of the value (as a tree). If the precise function being
called is known, FUNC is its FUNCTION_DECL; otherwise, FUNC is 0.
For the Atari generate the result in d0 or fp0 as appropriate. */
#undef FUNCTION_VALUE
#define FUNCTION_VALUE(VALTYPE, FUNC) \
(TREE_CODE (VALTYPE) == REAL_TYPE && TARGET_68881 \
? gen_rtx (REG, TYPE_MODE (VALTYPE), 16) \
: gen_rtx (REG, TYPE_MODE (VALTYPE), 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