Remove Go -longsize option.

This commit is contained in:
Ian Lance Taylor 2013-12-17 17:37:55 -08:00
commit ba049db40b
6 changed files with 13 additions and 57 deletions

View file

@ -3,7 +3,7 @@ package main
import "./template_opaque"
func main() {
v := template_opaque.NewOpaqueVectorType(10)
v := template_opaque.NewOpaqueVectorType(int64(10))
template_opaque.FillVector(v)
}

View file

@ -5,7 +5,7 @@ import "./wrapmacro"
func main() {
a := 2
b := -1
wrapmacro.Maximum(a, b)
wrapmacro.Maximum(a/7.0, -b*256)
wrapmacro.Maximum(int64(a), int64(b))
wrapmacro.Maximum(float64(a/7.0), float64(-b*256))
wrapmacro.GUINT16_SWAP_LE_BE_CONSTANT(1)
}