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
8012b923
Commit
8012b923
authored
Jun 13, 2009
by
Michael Meissner
Committed by
Michael Meissner
Jun 13, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix powerpc breakage
From-SVN: r148456
parent
4c4bde29
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
2 deletions
+9
-2
gcc/ChangeLog
+5
-0
gcc/config/rs6000/rs6000-c.c
+3
-1
gcc/config/rs6000/rs6000-protos.h
+1
-1
No files found.
gcc/ChangeLog
View file @
8012b923
2009-06-13 Michael Meissner <meissner@linux.vnet.ibm.com>
* config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin):
Add location argument.
2009-06-13 Aldy Hernandez <aldyh@redhat.com>
* config/alpha/alpha.c (alpha_build_builtin_va_list): Pass location to
...
...
gcc/config/rs6000/rs6000-c.c
View file @
8012b923
...
...
@@ -3001,8 +3001,10 @@ altivec_build_resolved_builtin (tree *args, int n,
support Altivec's overloaded builtins. */
tree
altivec_resolve_overloaded_builtin
(
tree
fndecl
,
void
*
passed_arglist
)
altivec_resolve_overloaded_builtin
(
unsigned
int
loc
,
tree
fndecl
,
void
*
passed_arglist
)
{
location_t
input_location
=
(
location_t
)
loc
;
VEC
(
tree
,
gc
)
*
arglist
=
(
VEC
(
tree
,
gc
)
*
)
passed_arglist
;
unsigned
int
nargs
=
VEC_length
(
tree
,
arglist
);
unsigned
int
fcode
=
DECL_FUNCTION_CODE
(
fndecl
);
...
...
gcc/config/rs6000/rs6000-protos.h
View file @
8012b923
...
...
@@ -132,7 +132,7 @@ extern void function_arg_advance (CUMULATIVE_ARGS *, enum machine_mode,
tree
,
int
,
int
);
extern
int
function_arg_boundary
(
enum
machine_mode
,
tree
);
extern
rtx
function_arg
(
CUMULATIVE_ARGS
*
,
enum
machine_mode
,
tree
,
int
);
extern
tree
altivec_resolve_overloaded_builtin
(
tree
,
void
*
);
extern
tree
altivec_resolve_overloaded_builtin
(
unsigned
int
,
tree
,
void
*
);
extern
rtx
rs6000_function_value
(
const_tree
,
const_tree
);
extern
rtx
rs6000_libcall_value
(
enum
machine_mode
);
extern
rtx
rs6000_va_arg
(
tree
,
tree
);
...
...
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