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
b19aea32
Commit
b19aea32
authored
Mar 01, 2012
by
Ian Lance Taylor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
compiler: Reliably give errors on misuse of multiple value call.
From-SVN: r184755
parent
5e4119ea
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
13 deletions
+16
-13
gcc/go/gofrontend/types.cc
+16
-13
No files found.
gcc/go/gofrontend/types.cc
View file @
b19aea32
...
...
@@ -622,16 +622,24 @@ Type::are_assignable_check_hidden(const Type* lhs, const Type* rhs,
std
::
string
*
reason
)
{
// Do some checks first. Make sure the types are defined.
if
(
rhs
!=
NULL
&&
rhs
->
forwarded
()
->
forward_declaration_type
()
==
NULL
&&
rhs
->
is_void_type
())
if
(
rhs
!=
NULL
&&
!
rhs
->
is_undefined
())
{
if
(
reason
!=
NULL
)
*
reason
=
"non-value used as value"
;
return
false
;
if
(
rhs
->
is_void_type
())
{
if
(
reason
!=
NULL
)
*
reason
=
"non-value used as value"
;
return
false
;
}
if
(
rhs
->
is_call_multiple_result_type
())
{
if
(
reason
!=
NULL
)
reason
->
assign
(
_
(
"multiple value function call in "
"single value context"
));
return
false
;
}
}
if
(
lhs
!=
NULL
&&
lhs
->
forwarded
()
->
forward_declaration_type
()
==
NULL
)
if
(
lhs
!=
NULL
&&
!
lhs
->
is_undefined
()
)
{
// Any value may be assigned to the blank identifier.
if
(
lhs
->
is_sink_type
())
...
...
@@ -639,9 +647,7 @@ Type::are_assignable_check_hidden(const Type* lhs, const Type* rhs,
// All fields of a struct must be exported, or the assignment
// must be in the same package.
if
(
check_hidden_fields
&&
rhs
!=
NULL
&&
rhs
->
forwarded
()
->
forward_declaration_type
()
==
NULL
)
if
(
check_hidden_fields
&&
rhs
!=
NULL
&&
!
rhs
->
is_undefined
())
{
if
(
lhs
->
has_hidden_fields
(
NULL
,
reason
)
||
rhs
->
has_hidden_fields
(
NULL
,
reason
))
...
...
@@ -715,9 +721,6 @@ Type::are_assignable_check_hidden(const Type* lhs, const Type* rhs,
{
if
(
rhs
->
interface_type
()
!=
NULL
)
reason
->
assign
(
_
(
"need explicit conversion"
));
else
if
(
rhs
->
is_call_multiple_result_type
())
reason
->
assign
(
_
(
"multiple value function call in "
"single value context"
));
else
if
(
lhs
->
named_type
()
!=
NULL
&&
rhs
->
named_type
()
!=
NULL
)
{
size_t
len
=
(
lhs
->
named_type
()
->
name
().
length
()
...
...
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