Skip to content

Commit 4729e42

Browse files
committed
Fix: Unused deadline_hi
1 parent f5641d8 commit 4729e42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/fork_union.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1516,7 +1516,7 @@ struct x86_tpause_t {
15161516
"mov %[hi], %%edx\n\t" // deadline_hi
15171517
".byte 0x66, 0x0F, 0xAE, 0xF3" // TPAUSE EBX
15181518
:
1519-
: [lo] "r"(deadline_lo), [hi] "r"(deadline_lo), "b"(sleep_level)
1519+
: [lo] "r"(deadline_lo), [hi] "r"(deadline_hi), "b"(sleep_level)
15201520
: "eax", "edx", "memory", "cc");
15211521
}
15221522
};

0 commit comments

Comments
 (0)