diff options
| author | gingerBill <bill@gingerbill.org> | 2022-05-30 16:42:32 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2022-05-30 16:42:32 +0100 |
| commit | cb10af08cb612e7d73abe3174e3e4ce0aa162ecc (patch) | |
| tree | 28a8c368643ce95a062de1947df3152cc89da472 | |
| parent | 4e49d24df980e3f4b853d62af01ed68cb2c622d2 (diff) | |
Correct intrinsics.odin for documentation
| -rw-r--r-- | core/intrinsics/intrinsics.odin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/intrinsics/intrinsics.odin b/core/intrinsics/intrinsics.odin index 89f9a5f20..72effaca9 100644 --- a/core/intrinsics/intrinsics.odin +++ b/core/intrinsics/intrinsics.odin @@ -279,8 +279,8 @@ wasm_memory_atomic_wait32 :: proc(ptr: ^u32, expected: u32, timeout_ns: i64) - wasm_memory_atomic_notify32 :: proc(ptr: ^u32, waiters: u32) -> (waiters_woken_up: u32) --- // x86 Targets (i386, amd64) -cpuid :: proc(ax, cx: u32) -> (eax, ebc, ecx, edx: u32) --- -xgetbv :: proc(cx: u32) -> (eax, edx: u32) --- +x86_cpuid :: proc(ax, cx: u32) -> (eax, ebc, ecx, edx: u32) --- +x86_xgetbv :: proc(cx: u32) -> (eax, edx: u32) --- // Darwin targets only |