File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ const inline_assembly = struct {
4141 : [ret ] "={rax}" (- > usize ),
4242 : [number ] "{rax}" (number ),
4343 [arg1 ] "{rdi}" (arg1 ),
44- : .{ . rcx = true , . r11 = true }
44+ : " rcx" , " r11"
4545 );
4646 }
4747
@@ -52,7 +52,7 @@ const inline_assembly = struct {
5252 [arg1 ] "{rdi}" (arg1 ),
5353 [arg2 ] "{rsi}" (arg2 ),
5454 [arg3 ] "{rdx}" (arg3 ),
55- : .{ . rcx = true , . r11 = true }
55+ : " rcx" , " r11"
5656 );
5757 }
5858 // #endregion inline_assembly
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ const inline_assembly = struct {
4141 : [ret ] "={rax}" (- > usize ),
4242 : [number ] "{rax}" (number ),
4343 [arg1 ] "{rdi}" (arg1 ),
44- : .{ . rcx = true , . r11 = true }
44+ : " rcx" , " r11"
4545 );
4646 }
4747
@@ -52,7 +52,7 @@ const inline_assembly = struct {
5252 [arg1 ] "{rdi}" (arg1 ),
5353 [arg2 ] "{rsi}" (arg2 ),
5454 [arg3 ] "{rdx}" (arg3 ),
55- : .{ . rcx = true , . r11 = true }
55+ : " rcx" , " r11"
5656 );
5757 }
5858 // #endregion inline_assembly
You can’t perform that action at this time.
0 commit comments