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

Function do_cvt_l_s

include/recomp.h:372–375  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

370 do_cvt_w_s(val)
371
372static inline int64_t do_cvt_l_s(float val) {
373 // Rounding mode aware float to 64-bit int conversion.
374 return (int64_t)llrintf(val);
375}
376
377#define CVT_L_S(val) \
378 do_cvt_l_s(val);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected