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
b0d623bb
Commit
b0d623bb
authored
Mar 07, 2012
by
Ian Lance Taylor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
compiler: Fix struct inheriting interface with varargs method.
From-SVN: r185060
parent
0bd5f4dd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
gcc/go/gofrontend/types.cc
+6
-2
No files found.
gcc/go/gofrontend/types.cc
View file @
b0d623bb
...
...
@@ -3744,8 +3744,12 @@ Function_type::copy_with_receiver(Type* receiver_type) const
go_assert
(
!
this
->
is_method
());
Typed_identifier
*
receiver
=
new
Typed_identifier
(
""
,
receiver_type
,
this
->
location_
);
return
Type
::
make_function_type
(
receiver
,
this
->
parameters_
,
this
->
results_
,
this
->
location_
);
Function_type
*
ret
=
Type
::
make_function_type
(
receiver
,
this
->
parameters_
,
this
->
results_
,
this
->
location_
);
if
(
this
->
is_varargs_
)
ret
->
set_is_varargs
();
return
ret
;
}
// Make a function 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