createChanClose closes the given channel.
(ch llvm.Value)
| 101 | |
| 102 | // createChanClose closes the given channel. |
| 103 | func (b *builder) createChanClose(ch llvm.Value) { |
| 104 | b.createRuntimeCall("chanClose", []llvm.Value{ch}, "") |
| 105 | } |
| 106 | |
| 107 | // createSelect emits all IR necessary for a select statements. That's a |
| 108 | // non-trivial amount of code because select is very complex to implement. |
no test coverage detected