[llvm-branch-commits] [lldb] 964e708 - Revert "[NFCI][lldb][test] Avoid unnecessary GNU extension for assembly call …"
via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Fri Nov 7 09:29:37 PST 2025
Author: Alex Langford
Date: 2025-11-07T09:29:33-08:00
New Revision: 964e708d9659b2f8b7895bae45f1831523fb1f37
URL: https://github.com/llvm/llvm-project/commit/964e708d9659b2f8b7895bae45f1831523fb1f37
DIFF: https://github.com/llvm/llvm-project/commit/964e708d9659b2f8b7895bae45f1831523fb1f37.diff
LOG: Revert "[NFCI][lldb][test] Avoid unnecessary GNU extension for assembly call …"
This reverts commit 3aa7a2426357a523d2ee12bd2b2406e45d058eac.
Added:
Modified:
lldb/test/Shell/Unwind/Inputs/call-asm.c
Removed:
################################################################################
diff --git a/lldb/test/Shell/Unwind/Inputs/call-asm.c b/lldb/test/Shell/Unwind/Inputs/call-asm.c
index 30d0069504172..b154c1ac1385d 100644
--- a/lldb/test/Shell/Unwind/Inputs/call-asm.c
+++ b/lldb/test/Shell/Unwind/Inputs/call-asm.c
@@ -1,2 +1,3 @@
-int asm_main();
+int asm_main() asm("asm_main");
+
int main() { return asm_main(); }
More information about the llvm-branch-commits
mailing list