github.com/euank/go@v0.0.0-20160829210321-495514729181/src/cmd/compile/internal/ssa/gen/dec64Ops.go (about)

     1  // Copyright 2016 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  // +build ignore
     6  
     7  package main
     8  
     9  var dec64Ops = []opData{}
    10  
    11  var dec64Blocks = []blockData{}
    12  
    13  func init() {
    14  	archs = append(archs, arch{
    15  		name:    "dec64",
    16  		ops:     dec64Ops,
    17  		blocks:  dec64Blocks,
    18  		generic: true,
    19  	})
    20  }