unsafe.Pointer is not the only invalid constant type, so it seems odd to check for ...
10 years, 7 months ago
(2014-08-15 13:14:48 UTC)
#2
unsafe.Pointer is not the only invalid constant type, so it seems odd to check
for it particularly. I admit that I can't think of a way that any other type
could get in there, but I think it would be more robust to check that the type
conversion is to a type that could be a constant, rather than rule out a
specific case.
All constants must have integer, float, complex, bool, or string type.
On 2014/08/15 13:14:48, iant wrote: > unsafe.Pointer is not the only invalid constant type, so ...
10 years, 7 months ago
(2014-08-15 15:13:15 UTC)
#3
On 2014/08/15 13:14:48, iant wrote:
> unsafe.Pointer is not the only invalid constant type, so it seems odd to check
> for it particularly. I admit that I can't think of a way that any other type
> could get in there, but I think it would be more robust to check that the type
> conversion is to a type that could be a constant, rather than rule out a
> specific case.
>
> All constants must have integer, float, complex, bool, or string type.
The other possible type is byteslice (conversion from string), where is it
handled ?
On 2014/08/15 13:14:48, iant wrote: > unsafe.Pointer is not the only invalid constant type, so ...
10 years, 7 months ago
(2014-08-15 16:10:49 UTC)
#4
On 2014/08/15 13:14:48, iant wrote:
> unsafe.Pointer is not the only invalid constant type, so it seems odd to check
> for it particularly. I admit that I can't think of a way that any other type
> could get in there, but I think it would be more robust to check that the type
> conversion is to a type that could be a constant, rather than rule out a
> specific case.
Good point, done. PTAL
On 2014/08/15 15:13:15, remyoudompheng wrote:
> The other possible type is byteslice (conversion from string), where is it
> handled ?
Conversion from string to []byte is represented as an OSTRARRAYBYTE node and
rejected already, but I added in some extra test cases for this anyway since it
seems worth checking.
Issue 130720043: code review 130720043: cmd/gc: disallow pointer constants
(Closed)
Created 10 years, 7 months ago by mdempsky
Modified 10 years, 7 months ago
Reviewers:
Base URL:
Comments: 0