Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
go
Commits
e39dc768
Commit
e39dc768
authored
Mar 16, 2011
by
Russ Cox
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gc: fix crash when using -u
R=ken2 CC=golang-dev
https://golang.org/cl/4278056
parent
90f3f917
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/cmd/gc/typecheck.c
src/cmd/gc/typecheck.c
+1
-1
No files found.
src/cmd/gc/typecheck.c
View file @
e39dc768
...
@@ -1311,7 +1311,7 @@ ret:
...
@@ -1311,7 +1311,7 @@ ret:
// TODO(rsc): should not need to check importpkg,
// TODO(rsc): should not need to check importpkg,
// but reflect mentions unsafe.Pointer.
// but reflect mentions unsafe.Pointer.
if
(
safemode
&&
!
incannedimport
&&
!
importpkg
&&
t
->
etype
==
TUNSAFEPTR
)
if
(
safemode
&&
!
incannedimport
&&
!
importpkg
&&
t
&&
t
->
etype
==
TUNSAFEPTR
)
yyerror
(
"cannot use unsafe.Pointer"
);
yyerror
(
"cannot use unsafe.Pointer"
);
evconst
(
n
);
evconst
(
n
);
...
...
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