mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
Rename muldiv and update tests for LLVM 20
This commit is contained in:
@@ -21,7 +21,7 @@ fn Clock native_clock()
|
||||
}
|
||||
Win32_LARGE_INTEGER counter @noinit;
|
||||
if (!win32_QueryPerformanceCounter(&counter)) return 0;
|
||||
return (Clock)counter.quadPart.mult_div(1_000_000_000, freq.quadPart);
|
||||
return (Clock)counter.quadPart.muldiv(1_000_000_000, freq.quadPart);
|
||||
}
|
||||
|
||||
fn Time native_timestamp()
|
||||
|
||||
Reference in New Issue
Block a user