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 e5fc8ea commit fa97735Copy full SHA for fa97735
src/arch/x86/mod.rs
@@ -44,12 +44,12 @@ mod tests {
44
asm!(
45
"
46
xor eax, eax
47
- je ret5
+ je 5f
48
mov eax, 2
49
- jmp done
50
- ret5:
+ jmp 1f
+ 5:
51
mov eax, 5
52
- done:
+ 1:
53
ret",
54
options(noreturn)
55
);
@@ -103,11 +103,11 @@ mod tests {
103
unsafe extern "C" fn external_loop() -> i32 {
104
105
106
- loop dest
+ loop 1f
107
nop
108
109
110
- dest:",
+ 1:",
111
112
113
}
0 commit comments