From: Rafael Espindola Date: Thu, 21 Jun 2012 23:49:18 +0000 (+0000) Subject: Add the testcase from pr13168. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7cd302fcfb950163e729fb7289ef8d9fe6cea7a8;p=clang Add the testcase from pr13168. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@158950 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/pr13168.c b/test/CodeGen/pr13168.c new file mode 100644 index 0000000000..a848af472c --- /dev/null +++ b/test/CodeGen/pr13168.c @@ -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); +}