aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/Shell/Unwind/Inputs/call-asm.c
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/test/Shell/Unwind/Inputs/call-asm.c')
-rw-r--r--lldb/test/Shell/Unwind/Inputs/call-asm.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/test/Shell/Unwind/Inputs/call-asm.c b/lldb/test/Shell/Unwind/Inputs/call-asm.c
index 30d0069..b154c1a 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(); }