[bolt][nfc] fix typo in test (#181611)

Fixed the typo in instrument-ind-call test
This commit is contained in:
Alexey Moksyakov 2026-02-16 11:54:02 +03:00 committed by GitHub
parent 7bf2d5f14b
commit 0a3db57e51
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -8,11 +8,11 @@ int getConst(int a, int b) { return 0xaa55; }
void foo() {
// clang-format off
__asm__ __volatile("stp x29, x30 [sp, #-16]!\n"
__asm__ __volatile("stp x29, x30, [sp, #-16]!\n"
"adrp x0, getConst\n"
"add x0, x0, :lo12:getConst\n"
"blr x0\n"
"ldp x29, x30 [sp], #16\n"
"ldp x29, x30, [sp], #16\n"
:::);
// clang-format on
return;