I modified code in insn_util.go to this
var allLMULs = []LMUL{1}
var wideningMULs = []LMUL{1}
var validLMULs = map[LMUL]struct{}{
allLMULs[0]: {},
}
But compilation has error
2025/06/26 08:03:42 unreachable 2025/06/26 08:03:42 unreachable make: *** [Makefile:121: generate-stage1] Error 1 make: *** Waiting for unfinished jobs....
What should I do