github.com/llir/llvm@v0.3.6/ir/enum/dllstorageclass_string.go (about)

     1  // Code generated by "stringer -linecomment -type DLLStorageClass"; DO NOT EDIT.
     2  
     3  package enum
     4  
     5  import "strconv"
     6  
     7  func _() {
     8  	// An "invalid array index" compiler error signifies that the constant values have changed.
     9  	// Re-run the stringer command to generate them again.
    10  	var x [1]struct{}
    11  	_ = x[DLLStorageClassNone-0]
    12  	_ = x[DLLStorageClassDLLExport-1]
    13  	_ = x[DLLStorageClassDLLImport-2]
    14  }
    15  
    16  const _DLLStorageClass_name = "nonedllexportdllimport"
    17  
    18  var _DLLStorageClass_index = [...]uint8{0, 4, 13, 22}
    19  
    20  func (i DLLStorageClass) String() string {
    21  	if i >= DLLStorageClass(len(_DLLStorageClass_index)-1) {
    22  		return "DLLStorageClass(" + strconv.FormatInt(int64(i), 10) + ")"
    23  	}
    24  	return _DLLStorageClass_name[_DLLStorageClass_index[i]:_DLLStorageClass_index[i+1]]
    25  }