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
f34ce44b
Commit
f34ce44b
authored
Mar 01, 2012
by
Ian Lance Taylor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
compiler: Fix varargs functions that call recover.
Also fix a couple of crashes on invalid code. From-SVN: r184751
parent
0f68ba3e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletions
+8
-1
gcc/go/gofrontend/expressions.h
+4
-0
gcc/go/gofrontend/gogo.cc
+4
-1
No files found.
gcc/go/gofrontend/expressions.h
View file @
f34ce44b
...
...
@@ -1066,6 +1066,10 @@ class Set_and_use_temporary_expression : public Expression
{
return
this
->
expr_
;
}
protected
:
int
do_traverse
(
Traverse
*
traverse
)
{
return
Expression
::
traverse
(
&
this
->
expr_
,
traverse
);
}
Type
*
do_type
();
...
...
gcc/go/gofrontend/gogo.cc
View file @
f34ce44b
...
...
@@ -2500,6 +2500,9 @@ Build_recover_thunks::function(Named_object* orig_no)
Call_expression
*
call
=
Expression
::
make_call
(
fn
,
args
,
false
,
location
);
// Any varargs call has already been lowered.
call
->
set_varargs_are_lowered
();
Statement
*
s
;
if
(
orig_fntype
->
results
()
==
NULL
||
orig_fntype
->
results
()
->
empty
())
s
=
Statement
::
make_statement
(
call
,
true
);
...
...
@@ -5346,5 +5349,5 @@ Statement_inserter::insert(Statement* s)
else
if
(
this
->
var_
!=
NULL
)
this
->
var_
->
add_preinit_statement
(
this
->
gogo_
,
s
);
else
go_
unreachable
(
);
go_
assert
(
saw_errors
()
);
}
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