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
ced2ec3b
Commit
ced2ec3b
authored
Feb 11, 2011
by
Ian Lance Taylor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't get confused using type of erronous binary expression.
From-SVN: r170043
parent
4a087ccf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
gcc/go/gofrontend/expressions.cc
+11
-0
No files found.
gcc/go/gofrontend/expressions.cc
View file @
ced2ec3b
...
...
@@ -5412,6 +5412,9 @@ Binary_expression::do_discarding_value()
Type
*
Binary_expression
::
do_type
()
{
if
(
this
->
classification
()
==
EXPRESSION_ERROR
)
return
Type
::
make_error_type
();
switch
(
this
->
op_
)
{
case
OPERATOR_OROR
:
...
...
@@ -5440,6 +5443,11 @@ Binary_expression::do_type()
return
left_type
;
else
if
(
right_type
->
is_error_type
())
return
right_type
;
else
if
(
!
Type
::
are_compatible_for_binop
(
left_type
,
right_type
))
{
this
->
report_error
(
_
(
"incompatible types in binary expression"
));
return
Type
::
make_error_type
();
}
else
if
(
!
left_type
->
is_abstract
()
&&
left_type
->
named_type
()
!=
NULL
)
return
left_type
;
else
if
(
!
right_type
->
is_abstract
()
&&
right_type
->
named_type
()
!=
NULL
)
...
...
@@ -5667,6 +5675,9 @@ Binary_expression::check_operator_type(Operator op, Type* type,
void
Binary_expression
::
do_check_types
(
Gogo
*
)
{
if
(
this
->
classification
()
==
EXPRESSION_ERROR
)
return
;
Type
*
left_type
=
this
->
left_
->
type
();
Type
*
right_type
=
this
->
right_
->
type
();
if
(
left_type
->
is_error_type
()
||
right_type
->
is_error_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