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
511e41e5
Commit
511e41e5
authored
Jul 07, 2008
by
Maxim Kuvyrkov
Committed by
Nathan Sidwell
Jul 07, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* config/m68k/m68k.c (m68k_return_in_memory): Fix arguments types.
From-SVN: r137559
parent
bd0e50ee
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
gcc/ChangeLog
+4
-0
gcc/config/m68k/m68k.c
+2
-2
No files found.
gcc/ChangeLog
View file @
511e41e5
2008
-
07
-
07
Maxim
Kuvyrkov
<
maxim
@codesourcery
.
com
>
*
config
/
m68k
/
m68k
.
c
(
m68k_return_in_memory
)
:
Fix
arguments
types
.
2008
-
07
-
07
Mark
Shinwell
<
shinwell
@codesourcery
.
com
>
*
config
/
m68k
/
lb1sf68
.
asm
:
Add
PIC
macros
for
Linux
targets
.
...
...
gcc/config/m68k/m68k.c
View file @
511e41e5
...
...
@@ -148,7 +148,7 @@ static bool m68k_save_reg (unsigned int regno, bool interrupt_handler);
static
bool
m68k_ok_for_sibcall_p
(
tree
,
tree
);
static
bool
m68k_rtx_costs
(
rtx
,
int
,
int
,
int
*
);
#if M68K_HONOR_TARGET_STRICT_ALIGNMENT
static
bool
m68k_return_in_memory
(
tree
,
tree
);
static
bool
m68k_return_in_memory
(
const_tree
,
const_
tree
);
#endif
...
...
@@ -4627,7 +4627,7 @@ m68k_function_value (const_tree valtype, const_tree func ATTRIBUTE_UNUSED)
/* Worker function for TARGET_RETURN_IN_MEMORY. */
#if M68K_HONOR_TARGET_STRICT_ALIGNMENT
static
bool
m68k_return_in_memory
(
tree
type
,
tree
fntype
ATTRIBUTE_UNUSED
)
m68k_return_in_memory
(
const_tree
type
,
const_
tree
fntype
ATTRIBUTE_UNUSED
)
{
enum
machine_mode
mode
=
TYPE_MODE
(
type
);
...
...
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