From: Chris Lattner Date: Thu, 19 Sep 2002 16:54:57 +0000 (+0000) Subject: New testcase that breaks the CFE. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=dfd621f3fc0f960622cceddec06f4b1286ce2aec;p=oota-llvm.git New testcase that breaks the CFE. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3821 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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() {} +