f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
10 lines
212 B
C++
10 lines
212 B
C++
// RUN: %clang_cc1 -nostdsysteminc -nobuiltininc -isystem Inputs -emit-llvm-only %s
|
|
|
|
// This used to cause a read past the end of a global variable.
|
|
|
|
#include <stdio.h>
|
|
|
|
void testcase(void) {
|
|
vprintf(0, 0);
|
|
}
|
|
|