mirror of
https://github.com/golang/go
synced 2024-11-05 22:26:10 -07:00
d8264de868
The tree is inconsistent about single l vs double l in those words in documentation, test messages, and one error value text. $ git grep -E '[Mm]arshall(|s|er|ers|ed|ing)' | wc -l 42 $ git grep -E '[Mm]arshal(|s|er|ers|ed|ing)' | wc -l 1694 Make it consistently a single l, per earlier decisions. This means contributors won't be confused by misleading precedence, and it helps consistency. Change the spelling in one error value text in newRawAttributes of crypto/x509 package to be consistent. This change was generated with: perl -i -npe 's,([Mm]arshal)l(|s|er|ers|ed|ing),$1$2,' $(git grep -l -E '[Mm]arshall' | grep -v AUTHORS | grep -v CONTRIBUTORS) Updates #12431. Follows https://golang.org/cl/14150. Change-Id: I85d28a2d7692862ccb02d6a09f5d18538b6049a2 Reviewed-on: https://go-review.googlesource.com/33017 Run-TryBot: Minux Ma <minux@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
35 lines
588 B
Go
35 lines
588 B
Go
// run
|
|
|
|
// Copyright 2015 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package main
|
|
|
|
// Make sure the compiler knows that DUFFCOPY clobbers X0
|
|
|
|
import "fmt"
|
|
|
|
//go:noinline
|
|
func f(x float64) float64 {
|
|
// y is allocated to X0
|
|
y := x + 5
|
|
// marshals z before y. Marshaling z
|
|
// calls DUFFCOPY.
|
|
return g(z, y)
|
|
}
|
|
|
|
//go:noinline
|
|
func g(b [64]byte, y float64) float64 {
|
|
return y
|
|
}
|
|
|
|
var z [64]byte
|
|
|
|
func main() {
|
|
got := f(5)
|
|
if got != 10 {
|
|
panic(fmt.Sprintf("want 10, got %f", got))
|
|
}
|
|
}
|