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

Unified Diff: src/pkg/exp/eval/func.go

Issue 2763041: code review 2763041: use copy (Closed)
Patch Set: code review 2763041: use copy Created 14 years, 5 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
« no previous file with comments | « src/pkg/exp/eval/expr.go ('k') | src/pkg/exp/eval/type.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/pkg/exp/eval/func.go
===================================================================
--- a/src/pkg/exp/eval/func.go
+++ b/src/pkg/exp/eval/func.go
@@ -46,9 +46,7 @@
n := len(b.instrs)
if n >= cap(b.instrs) {
a := make(code, n, n*2)
- for i := range b.instrs {
- a[i] = b.instrs[i]
- }
+ copy(a, b.instrs)
b.instrs = a
}
b.instrs = b.instrs[0 : n+1]
@@ -60,9 +58,7 @@
func (b *codeBuf) get() code {
// Freeze this buffer into an array of exactly the right size
a := make(code, len(b.instrs))
- for i := range b.instrs {
- a[i] = b.instrs[i]
- }
+ copy(a, b.instrs)
return code(a)
}
« no previous file with comments | « src/pkg/exp/eval/expr.go ('k') | src/pkg/exp/eval/type.go » ('j') | no next file with comments »

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