Skip to content

Commit 4c764a4

Browse files
qinghontgross35
andauthored
Update compiler-builtins/src/aarch64_linux.rs
Co-authored-by: Trevor Gross <[email protected]>
1 parent 6144db9 commit 4c764a4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

compiler-builtins/src/aarch64_linux.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -265,13 +265,13 @@ macro_rules! or {
265265
#[macro_export]
266266
macro_rules! foreach_ordering {
267267
($macro:path, $bytes:tt, $name:ident) => {
268-
$macro!( Relaxed, $bytes, ${concat($name,_relax)} );
268+
$macro!( Relaxed, $bytes, ${concat($name, _relax)} );
269269
$macro!( Acquire, $bytes, ${concat($name, _acq)} );
270270
$macro!( Release, $bytes, ${concat($name, _rel)} );
271271
$macro!( AcqRel, $bytes, ${concat($name, _acq_rel)} );
272272
};
273273
($macro:path, $name:ident) => {
274-
$macro!( Relaxed, ${concat($name,_relax)} );
274+
$macro!( Relaxed, ${concat($name, _relax)} );
275275
$macro!( Acquire, ${concat($name, _acq)} );
276276
$macro!( Release, ${concat($name, _rel)} );
277277
$macro!( AcqRel, ${concat($name, _acq_rel)} );

0 commit comments

Comments
 (0)