(name)
| 1152 | // as representing a heap. This can be used in JS library code in order |
| 1153 | // to get this pass to fix it up. |
| 1154 | function isHeap(name) { |
| 1155 | return isEmscriptenHEAP(name) || name === 'heap' || name === 'HEAP'; |
| 1156 | } |
| 1157 | |
| 1158 | function unsign(node) { |
| 1159 | // The pointer is often a >> shift, which we can just turn into >>> |
no test coverage detected