From dfd621f3fc0f960622cceddec06f4b1286ce2aec Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 19 Sep 2002 16:54:57 +0000 Subject: [PATCH] New testcase that breaks the CFE. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3821 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CFrontend/2002-09-19-StarInLabel.c | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 test/CFrontend/2002-09-19-StarInLabel.c diff --git a/test/CFrontend/2002-09-19-StarInLabel.c b/test/CFrontend/2002-09-19-StarInLabel.c new file mode 100644 index 00000000000..b16a39d7d86 --- /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() {} +