repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[GenericDomTree][NFC] Remove unnecessary `const_cast`s (#97638)
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
builtin-recursive.cpp
blob
7553a6e48f5326fb57765408e6832072a2a67797
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