diff options
author | Chris Lattner <sabre@nondot.org> | 2003-08-20 18:17:13 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-08-20 18:17:13 +0000 |
commit | 0dac47a5516fd5e515200df891505559b2ee0b09 (patch) | |
tree | b62f223a23dc65d68addc6367292e5f723928063 | |
parent | a1a7935d6828e5646d4dbeb1a194b6a34f4968e8 (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.c | 4 |
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(); +} |