Source file src/cmd/internal/obj/s390x/anamesz.go

     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  package s390x
     6  
     7  var cnamesz = []string{
     8  	"NONE",
     9  	"REG",
    10  	"FREG",
    11  	"VREG",
    12  	"AREG",
    13  	"ZCON",
    14  	"SCON",
    15  	"UCON",
    16  	"ADDCON",
    17  	"ANDCON",
    18  	"LCON",
    19  	"DCON",
    20  	"SACON",
    21  	"LACON",
    22  	"DACON",
    23  	"SBRA",
    24  	"LBRA",
    25  	"SAUTO",
    26  	"LAUTO",
    27  	"ZOREG",
    28  	"SOREG",
    29  	"LOREG",
    30  	"TLS_LE",
    31  	"TLS_IE",
    32  	"GOK",
    33  	"ADDR",
    34  	"SYMADDR",
    35  	"GOTADDR",
    36  	"TEXTSIZE",
    37  	"ANY",
    38  	"NCLASS",
    39  }
    40  

View as plain text