summaryrefslogtreecommitdiff
path: root/test/CFrontend
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-09-19 16:54:57 +0000
committerChris Lattner <sabre@nondot.org>2002-09-19 16:54:57 +0000
commitdfd621f3fc0f960622cceddec06f4b1286ce2aec (patch)
tree22d45f5cc03c792f9276e1ff41cab69fcff30390 /test/CFrontend
parent3e1f144a1d5b989ea96b4e5fa3538daf0cc5c5a9 (diff)
downloadllvm-dfd621f3fc0f960622cceddec06f4b1286ce2aec.tar.gz
llvm-dfd621f3fc0f960622cceddec06f4b1286ce2aec.tar.bz2
llvm-dfd621f3fc0f960622cceddec06f4b1286ce2aec.tar.xz
New testcase that breaks the CFE.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3821 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CFrontend')
-rw-r--r--test/CFrontend/2002-09-19-StarInLabel.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/CFrontend/2002-09-19-StarInLabel.c b/test/CFrontend/2002-09-19-StarInLabel.c
new file mode 100644
index 0000000000..b16a39d7d8
--- /dev/null
+++ b/test/CFrontend/2002-09-19-StarInLabel.c
@@ -0,0 +1,7 @@
+extern void start() __asm__("start");
+extern void _start() __asm__("_start");
+extern void __start() __asm__("__start");
+void start() {}
+void _start() {}
+void __start() {}
+