Check for IRGen output when varag is used

in -funknown-anytype  mode (in lldb use).

llvm-svn: 221796
This commit is contained in:
Fariborz Jahanian 2014-11-12 17:54:11 +00:00
parent 2d05db49bb
commit f122f4b99d
1 changed files with 2 additions and 0 deletions

View File

@ -119,5 +119,7 @@ void test10() {
extern "C" __unknown_anytype malloc(...);
void test11() {
void *s = (void*)malloc(12);
// COMMON: call i8* (i32, ...)* @malloc(i32 12)
void *d = (void*)malloc(435);
// COMMON: call i8* (i32, ...)* @malloc(i32 435)
}