github.com/clem109/go-ethereum@v1.8.3-0.20180316121352-fe6cf00f480a/crypto/bn256/cloudflare/gfp_pure.go (about) 1 // +build !amd64 appengine gccgo 2 3 package bn256 4 5 func gfpNeg(c, a *gfP) { 6 panic("unsupported architecture") 7 } 8 9 func gfpAdd(c, a, b *gfP) { 10 panic("unsupported architecture") 11 } 12 13 func gfpSub(c, a, b *gfP) { 14 panic("unsupported architecture") 15 } 16 17 func gfpMul(c, a, b *gfP) { 18 panic("unsupported architecture") 19 }