github.com/llir/llvm@v0.3.6/ir/enum/preemption_string.go (about) 1 // Code generated by "stringer -linecomment -type Preemption"; 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[PreemptionNone-0] 12 _ = x[PreemptionDSOLocal-1] 13 _ = x[PreemptionDSOLocalEquivalent-2] 14 _ = x[PreemptionDSOPreemptable-3] 15 } 16 17 const _Preemption_name = "nonedso_localdso_local_equivalentdso_preemptable" 18 19 var _Preemption_index = [...]uint8{0, 4, 13, 33, 48} 20 21 func (i Preemption) String() string { 22 if i >= Preemption(len(_Preemption_index)-1) { 23 return "Preemption(" + strconv.FormatInt(int64(i), 10) + ")" 24 } 25 return _Preemption_name[_Preemption_index[i]:_Preemption_index[i+1]] 26 }