aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-08-20 18:17:13 +0000
committerChris Lattner <sabre@nondot.org>2003-08-20 18:17:13 +0000
commit0dac47a5516fd5e515200df891505559b2ee0b09 (patch)
treeb62f223a23dc65d68addc6367292e5f723928063
parenta1a7935d6828e5646d4dbeb1a194b6a34f4968e8 (diff)
New testcase, distilled from bison
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7985 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CFrontend/2003-08-20-vfork-bug.c4
1 files changed, 4 insertions, 0 deletions
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 0000000000..ac6db4672e
--- /dev/null
+++ b/test/CFrontend/2003-08-20-vfork-bug.c
@@ -0,0 +1,4 @@
+extern int vfork(void);
+test() {
+ vfork();
+}