From: Chris Lattner Date: Wed, 20 Aug 2003 18:17:13 +0000 (+0000) Subject: New testcase, distilled from bison X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=0dac47a5516fd5e515200df891505559b2ee0b09;p=oota-llvm.git New testcase, distilled from bison git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7985 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CFrontend/2003-08-20-vfork-bug.c b/test/CFrontend/2003-08-20-vfork-bug.c new file mode 100644 index 00000000000..ac6db4672e1 --- /dev/null +++ b/test/CFrontend/2003-08-20-vfork-bug.c @@ -0,0 +1,4 @@ +extern int vfork(void); +test() { + vfork(); +}