Add the testcase from pr13168.

llvm-svn: 158950
This commit is contained in:
Rafael Espindola 2012-06-21 23:49:18 +00:00
parent c368817101
commit f6d5e935bb
1 changed files with 7 additions and 0 deletions

View File

@ -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);
}