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
64eb7749
Commit
64eb7749
authored
Dec 21, 2012
by
Rémy Oudompheng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cmd/gc: mapassign2 doesn't exist anymore.
R=golang-dev, bradfitz CC=golang-dev
https://golang.org/cl/6997043
parent
c9eb6267
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
2 deletions
+0
-2
src/cmd/gc/builtin.c
src/cmd/gc/builtin.c
+0
-1
src/cmd/gc/runtime.go
src/cmd/gc/runtime.go
+0
-1
No files found.
src/cmd/gc/builtin.c
View file @
64eb7749
...
...
@@ -65,7 +65,6 @@ char *runtimeimport =
"func @
\"\"
.mapaccess1(@
\"\"
.mapType *byte, @
\"\"
.hmap map[any]any, @
\"\"
.key any) (@
\"\"
.val any)
\n
"
"func @
\"\"
.mapaccess2(@
\"\"
.mapType *byte, @
\"\"
.hmap map[any]any, @
\"\"
.key any) (@
\"\"
.val any, @
\"\"
.pres bool)
\n
"
"func @
\"\"
.mapassign1(@
\"\"
.mapType *byte, @
\"\"
.hmap map[any]any, @
\"\"
.key any, @
\"\"
.val any)
\n
"
"func @
\"\"
.mapassign2(@
\"\"
.mapType *byte, @
\"\"
.hmap map[any]any, @
\"\"
.key any, @
\"\"
.val any, @
\"\"
.pres bool)
\n
"
"func @
\"\"
.mapiterinit(@
\"\"
.mapType *byte, @
\"\"
.hmap map[any]any, @
\"\"
.hiter *any)
\n
"
"func @
\"\"
.mapdelete(@
\"\"
.mapType *byte, @
\"\"
.hmap map[any]any, @
\"\"
.key any)
\n
"
"func @
\"\"
.mapiternext(@
\"\"
.hiter *any)
\n
"
...
...
src/cmd/gc/runtime.go
View file @
64eb7749
...
...
@@ -91,7 +91,6 @@ func makemap(mapType *byte, hint int64) (hmap map[any]any)
func
mapaccess1
(
mapType
*
byte
,
hmap
map
[
any
]
any
,
key
any
)
(
val
any
)
func
mapaccess2
(
mapType
*
byte
,
hmap
map
[
any
]
any
,
key
any
)
(
val
any
,
pres
bool
)
func
mapassign1
(
mapType
*
byte
,
hmap
map
[
any
]
any
,
key
any
,
val
any
)
func
mapassign2
(
mapType
*
byte
,
hmap
map
[
any
]
any
,
key
any
,
val
any
,
pres
bool
)
func
mapiterinit
(
mapType
*
byte
,
hmap
map
[
any
]
any
,
hiter
*
any
)
func
mapdelete
(
mapType
*
byte
,
hmap
map
[
any
]
any
,
key
any
)
func
mapiternext
(
hiter
*
any
)
...
...
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