summaryrefslogtreecommitdiff
path: root/test/FrontendC/2002-09-19-StarInLabel.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/FrontendC/2002-09-19-StarInLabel.c')
-rw-r--r--test/FrontendC/2002-09-19-StarInLabel.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/FrontendC/2002-09-19-StarInLabel.c b/test/FrontendC/2002-09-19-StarInLabel.c
new file mode 100644
index 0000000000000..86a2571d57bc5
--- /dev/null
+++ b/test/FrontendC/2002-09-19-StarInLabel.c
@@ -0,0 +1,9 @@
+// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
+
+extern void start() __asm__("start");
+extern void _start() __asm__("_start");
+extern void __start() __asm__("__start");
+void start() {}
+void _start() {}
+void __start() {}
+