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
5cb047d1
Commit
5cb047d1
authored
Sep 17, 2011
by
Ian Lance Taylor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve errors for invalid use of [...]type.
From-SVN: r178921
parent
31aeabd3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
4 deletions
+20
-4
gcc/go/gofrontend/expressions.cc
+1
-1
gcc/go/gofrontend/parse.cc
+15
-2
gcc/testsuite/go.test/test/ddd1.go
+4
-1
No files found.
gcc/go/gofrontend/expressions.cc
View file @
5cb047d1
...
...
@@ -11789,7 +11789,7 @@ Array_construction_expression::do_check_types(Gogo*)
}
Expression
*
length
=
at
->
length
();
if
(
length
!=
NULL
)
if
(
length
!=
NULL
&&
!
length
->
is_error_expression
()
)
{
mpz_t
val
;
mpz_init
(
val
);
...
...
gcc/go/gofrontend/parse.cc
View file @
5cb047d1
...
...
@@ -2761,8 +2761,21 @@ Parse::primary_expr(bool may_be_sink, bool may_be_composite_lit,
else
this
->
advance_token
();
if
(
expr
->
is_error_expression
())
return
expr
;
ret
=
Expression
::
make_cast
(
ret
->
type
(),
expr
,
loc
);
ret
=
expr
;
else
{
Type
*
t
=
ret
->
type
();
if
(
t
->
classification
()
==
Type
::
TYPE_ARRAY
&&
t
->
array_type
()
->
length
()
!=
NULL
&&
t
->
array_type
()
->
length
()
->
is_nil_expression
())
{
error_at
(
ret
->
location
(),
"invalid use of %<...%> in type conversion"
);
ret
=
Expression
::
make_error
(
loc
);
}
else
ret
=
Expression
::
make_cast
(
t
,
expr
,
loc
);
}
}
}
...
...
gcc/testsuite/go.test/test/ddd1.go
View file @
5cb047d1
...
...
@@ -15,7 +15,7 @@ var (
_
=
sum
()
_
=
sum
(
1.0
,
2.0
)
_
=
sum
(
1.5
)
// ERROR "integer"
_
=
sum
(
"hello"
)
// ERROR "
conver
t|incompatible"
_
=
sum
(
"hello"
)
// ERROR "
string.*as type in
t|incompatible"
_
=
sum
([]
int
{
1
})
// ERROR "slice literal.*as type int|incompatible"
)
...
...
@@ -43,4 +43,7 @@ func bad(args ...int) {
var
x
int
_
=
unsafe
.
Pointer
(
&
x
...
)
// ERROR "[.][.][.]"
_
=
unsafe
.
Sizeof
(
x
...
)
// ERROR "[.][.][.]"
_
=
[
...
]
byte
(
"foo"
)
// ERROR "[.][.][.]"
_
=
[
...
][
...
]
int
{{
1
,
2
,
3
},{
4
,
5
,
6
}}
// ERROR "[.][.][.]"
}
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