We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6144db9 commit 4c764a4Copy full SHA for 4c764a4
compiler-builtins/src/aarch64_linux.rs
@@ -265,13 +265,13 @@ macro_rules! or {
265
#[macro_export]
266
macro_rules! foreach_ordering {
267
($macro:path, $bytes:tt, $name:ident) => {
268
- $macro!( Relaxed, $bytes, ${concat($name,_relax)} );
+ $macro!( Relaxed, $bytes, ${concat($name, _relax)} );
269
$macro!( Acquire, $bytes, ${concat($name, _acq)} );
270
$macro!( Release, $bytes, ${concat($name, _rel)} );
271
$macro!( AcqRel, $bytes, ${concat($name, _acq_rel)} );
272
};
273
($macro:path, $name:ident) => {
274
- $macro!( Relaxed, ${concat($name,_relax)} );
+ $macro!( Relaxed, ${concat($name, _relax)} );
275
$macro!( Acquire, ${concat($name, _acq)} );
276
$macro!( Release, ${concat($name, _rel)} );
277
$macro!( AcqRel, ${concat($name, _acq_rel)} );
0 commit comments