]> git.proxmox.com Git - rustc.git/blame - src/llvm/tools/clang/test/CodeGen/builtin-recursive.cc
Imported Upstream version 0.6
[rustc.git] / src / llvm / tools / clang / test / CodeGen / builtin-recursive.cc
CommitLineData
223e47cc
LB
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
7void testcase(void) {
8 vprintf(0, 0);
9}
10