I found code like this will still trigger bounding check(by adding -gcflags="-d=ssa/check_bce/debug=1"):
// slice is guaranteed to be non empty elsewhere
idx := someUintVariable % len(slice)
slice[idx] = someValue // Found IsInBounds, how to avoid that?
Is there a way to force the compiler not to do bounding check in this case?