Source file src/cmd/compile/internal/ssa/gen/decOps.go
1 // Copyright 2015 The Go Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 //go:build ignore 6 // +build ignore 7 8 package main 9 10 var decOps = []opData{} 11 12 var decBlocks = []blockData{} 13 14 func init() { 15 archs = append(archs, arch{ 16 name: "dec", 17 ops: decOps, 18 blocks: decBlocks, 19 generic: true, 20 }) 21 } 22