diff options
author | ringabout <43030857+ringabout@users.noreply.github.com> | 2024-08-29 02:44:06 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-28 20:44:06 +0200 |
commit | ea7c2a440976b2757a780680a08f29c3ce0914e0 (patch) | |
tree | 5a15bc4c6f9bda340853143441c4d2bbf83a4365 /lib | |
parent | d53a9cf2888d1cd152a2b227d1868522473388cf (diff) | |
download | Nim-ea7c2a440976b2757a780680a08f29c3ce0914e0.tar.gz |
fixes #14623; Top-level volatileLoad/volatileStore leads to invalid codegen (#24020)
fixes #14623
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pure/volatile.nim | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/lib/pure/volatile.nim b/lib/pure/volatile.nim index f30d899df..a38247c7d 100644 --- a/lib/pure/volatile.nim +++ b/lib/pure/volatile.nim @@ -10,20 +10,18 @@ ## This module contains code for generating volatile loads and stores, ## which are useful in embedded and systems programming. -template volatileLoad*[T](src: ptr T): T = +proc volatileLoad*[T](src: ptr T): T {.inline, noinit.} = ## Generates a volatile load of the value stored in the container `src`. ## Note that this only effects code generation on `C` like backends. when nimvm: - src[] + result = src[] else: when defined(js): - src[] + result = src[] else: - var res: T - {.emit: [res, " = (*(", typeof(src[]), " volatile*)", src, ");"].} - res + {.emit: [result, " = (*(", typeof(src[]), " volatile*)", src, ");"].} -template volatileStore*[T](dest: ptr T, val: T) = +proc volatileStore*[T](dest: ptr T, val: T) {.inline.} = ## Generates a volatile store into the container `dest` of the value ## `val`. Note that this only effects code generation on `C` like ## backends. |