xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGen/builtin-recursive.cpp (revision 3ac58492b3d3709bad0ae9c60a137f63a90960b7)
1 // RUN: %clang_cc1 -triple x86_64-unknown-unknown -nostdsysteminc -nobuiltininc -isystem %S/Inputs -emit-llvm-only %s
2 
3 // This used to cause a read past the end of a global variable.
4 
5 #include <stdio.h>
6 
7 void testcase(void) {
8   vprintf(0, 0);
9 }
10 
11