diff options
| author | gingerBill <bill@gingerbill.org> | 2022-05-31 00:01:23 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2022-05-31 00:01:23 +0100 |
| commit | a7840d50e2a1f6683607ab2b0dae895952eda103 (patch) | |
| tree | 347cec1ace01362a32130ec791bf43dab7a7a875 | |
| parent | cb10af08cb612e7d73abe3174e3e4ce0aa162ecc (diff) | |
Correct documentation
| -rw-r--r-- | core/intrinsics/intrinsics.odin | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/intrinsics/intrinsics.odin b/core/intrinsics/intrinsics.odin index 72effaca9..9994a1914 100644 --- a/core/intrinsics/intrinsics.odin +++ b/core/intrinsics/intrinsics.odin @@ -10,10 +10,10 @@ soa_struct :: proc($N: int, $T: typeid) -> type/#soa[N]T // Volatile volatile_load :: proc(dst: ^$T) -> T --- -volatile_store :: proc(dst: ^$T, val: T) -> T --- +volatile_store :: proc(dst: ^$T, val: T) --- -nontemporal_load :: proc(dst: ^$T) -> T --- -nontemporal_store :: proc(dst: ^$T, val: T) -> T --- +non_temporal_load :: proc(dst: ^$T) -> T --- +non_temporal_store :: proc(dst: ^$T, val: T) --- // Trapping debug_trap :: proc() --- |