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 8923641 commit 27c0199Copy full SHA for 27c0199
crates/codspeed/src/request/arch/x86_64.rs
@@ -6,10 +6,10 @@ pub type Value = u64;
6
pub unsafe fn send_client_request(default: Value, args: &[Value; 6]) -> Value {
7
let mut value = default;
8
asm!(
9
- "rol rdi, $$3",
10
- "rol rdi, $$13",
11
- "rol rdi, $$61",
12
- "rol rdi, $$51",
+ "rol rdi, 3",
+ "rol rdi, 13",
+ "rol rdi, 61",
+ "rol rdi, 51",
13
"xchg rbx, rbx",
14
in("rax") args.as_ptr(),
15
inlateout("rdx") value,
0 commit comments