Skip to content

Commit 476737e

Browse files
thomcclqd
authored andcommitted
Fix an assembly test with a hard-coded hash
1 parent 36ca32c commit 476737e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/assembly/asm/global_asm.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ global_asm!("movl ${}, %ecx", const 5, options(att_syntax));
2525
global_asm!("call {}", sym my_func);
2626
// CHECK: lea rax, [rip + MY_STATIC]
2727
global_asm!("lea rax, [rip + {}]", sym MY_STATIC);
28-
// CHECK: call _RNvCsiubXh4Yz005_10global_asm6foobar
28+
// CHECK: call _RNvCsddMtV7nAi4C_10global_asm6foobar
2929
global_asm!("call {}", sym foobar);
30-
// CHECK: _RNvCsiubXh4Yz005_10global_asm6foobar:
30+
// CHECK: _RNvCsddMtV7nAi4C_10global_asm6foobar:
3131
fn foobar() {
3232
loop {}
3333
}

0 commit comments

Comments
 (0)