]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/CodeGen/builtin-recursive.cc
Vendor import of clang RELEASE_351/final tag r225668 (effectively, 3.5.1 release):
[FreeBSD/FreeBSD.git] / test / CodeGen / builtin-recursive.cc
1 // RUN: %clang_cc1 -nostdsysteminc -nobuiltininc -isystem 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