Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(4022)

Unified Diff: src/cmd/gc/runtime.go

Issue 5966075: code review 5966075: cmd/gc: inline slice[arr,str] in the frontend (mostly). (Closed)
Patch Set: diff -r 316890203045 https://go.googlecode.com/hg/ Created 11 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/cmd/gc/runtime.go
===================================================================
--- a/src/cmd/gc/runtime.go
+++ b/src/cmd/gc/runtime.go
@@ -117,9 +117,6 @@
func makeslice(typ *byte, nel int64, cap int64) (ary []any)
func growslice(typ *byte, old []any, n int64) (ary []any)
-func sliceslice1(old []any, lb uint64, width uint64) (ary []any)
-func sliceslice(old []any, lb uint64, hb uint64, width uint64) (ary []any)
-func slicearray(old *any, nel uint64, lb uint64, hb uint64, width uint64) (ary []any)
func closure() // has args, but compiler fills in

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b