From 0a3db57e511d9c09d5c58847c5e0235cee894aa8 Mon Sep 17 00:00:00 2001 From: Alexey Moksyakov Date: Mon, 16 Feb 2026 11:54:02 +0300 Subject: [PATCH] [bolt][nfc] fix typo in test (#181611) Fixed the typo in instrument-ind-call test --- bolt/test/runtime/AArch64/instrumentation-ind-call.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bolt/test/runtime/AArch64/instrumentation-ind-call.c b/bolt/test/runtime/AArch64/instrumentation-ind-call.c index cab0dc0ac2bb..fda068085dca 100644 --- a/bolt/test/runtime/AArch64/instrumentation-ind-call.c +++ b/bolt/test/runtime/AArch64/instrumentation-ind-call.c @@ -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;