Remove Go -longsize option.
This commit is contained in:
parent
532da6989c
commit
ba049db40b
6 changed files with 13 additions and 57 deletions
|
|
@ -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)
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue