forked from OSchip/llvm-project
Check for IRGen output when varag is used
in -funknown-anytype mode (in lldb use). llvm-svn: 221796
This commit is contained in:
parent
2d05db49bb
commit
f122f4b99d
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue