Skip to content

Commit 849bea3

Browse files
authored
Rollup merge of #147523 - krasimirgg:llvm22-rr, r=durin42
x86_64-bigint-helpers test: update test assertion to cover registers r8 and r9 Adapts the test expectation to cover the case where a register like `r9` is chosen. Update is similar to the other such expectation in the previous function in the same test file. Found by our experimental rust + LLVM @ HEAD bot: https://buildkite.com/llvm-project/rust-llvm-integrate-prototype/builds/40528/steps/canvas?sid=0199c8d7-f65a-4bbc-8d7f-e62d4ddcc65e#0199c8d7-f7ab-464d-a0fd-b4b8862a11d3/1047-1175 r? durin42 ``@rustbot`` label: +llvm-main
2 parents 802f722 + 71c0533 commit 849bea3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/assembly-llvm/x86_64-bigint-helpers.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ pub unsafe extern "sysv64" fn bigint_chain_borrowing_sub(
4444
n: usize,
4545
mut carry: bool,
4646
) -> bool {
47-
// CHECK: mov [[TEMP:r..]], qword ptr [rsi + 8*[[IND:r..]] + 8]
47+
// CHECK: mov [[TEMP:r.+]], qword ptr [rsi + 8*[[IND:r.+]] + 8]
4848
// CHECK: sbb [[TEMP]], qword ptr [rdx + 8*[[IND]] + 8]
4949
// CHECK: mov qword ptr [rdi + 8*[[IND]] + 8], [[TEMP]]
5050
// CHECK: mov [[TEMP]], qword ptr [rsi + 8*[[IND]] + 16]

0 commit comments

Comments
 (0)