]> granicus.if.org Git - clang/commitdiff
Add the testcase from pr13168.
authorRafael Espindola <rafael.espindola@gmail.com>
Thu, 21 Jun 2012 23:49:18 +0000 (23:49 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Thu, 21 Jun 2012 23:49:18 +0000 (23:49 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@158950 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/pr13168.c [new file with mode: 0644]

diff --git a/test/CodeGen/pr13168.c b/test/CodeGen/pr13168.c
new file mode 100644 (file)
index 0000000..a848af4
--- /dev/null
@@ -0,0 +1,7 @@
+// RUN: %clang_cc1 -emit-llvm %s -o -
+
+typedef int (*_MD_Open64)(int oflag, ...);
+_MD_Open64 _open64;
+void PR_OpenFile(int mode) {
+_open64(0, mode);
+}