(ptr)
| 1475 | var tempDoublePtr = STATICTOP; STATICTOP += 16; |
| 1476 | |
| 1477 | function copyTempFloat(ptr) { // functions, because inlining this code increases code size too much |
| 1478 | |
| 1479 | HEAP8[tempDoublePtr] = HEAP8[ptr]; |
| 1480 | |
| 1481 | HEAP8[tempDoublePtr+1] = HEAP8[ptr+1]; |
| 1482 | |
| 1483 | HEAP8[tempDoublePtr+2] = HEAP8[ptr+2]; |
| 1484 | |
| 1485 | HEAP8[tempDoublePtr+3] = HEAP8[ptr+3]; |
| 1486 | |
| 1487 | } |
| 1488 | |
| 1489 | function copyTempDouble(ptr) { |
| 1490 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…