MCPcopy Create free account
hub / github.com/N64Recomp/N64Recomp / do_cvt_l_d

Function do_cvt_l_d

include/recomp.h:388–391  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

386 do_cvt_w_d(val)
387
388static inline int64_t do_cvt_l_d(double val) {
389 // Rounding mode aware double to 64-bit int conversion.
390 return (int64_t)llrint(val);
391}
392
393#define CVT_L_D(val) \
394 do_cvt_l_d(val)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected