localValue is a special implementation of the value interface. It is a placeholder for other values in instruction operands, and is replaced with one of the others before executing.
| 1141 | // placeholder for other values in instruction operands, and is replaced with |
| 1142 | // one of the others before executing. |
| 1143 | type localValue struct { |
| 1144 | value llvm.Value |
| 1145 | } |
| 1146 | |
| 1147 | func (v localValue) len(r *runner) uint32 { |
| 1148 | panic("interp: localValue.len") |
nothing calls this directly
no outgoing calls
no test coverage detected