diff options
-rw-r--r-- | clang/test/CodeGen/ppc64-varargs-struct.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/clang/test/CodeGen/ppc64-varargs-struct.c b/clang/test/CodeGen/ppc64-varargs-struct.c index e69332ead43..61c33b05298 100644 --- a/clang/test/CodeGen/ppc64-varargs-struct.c +++ b/clang/test/CodeGen/ppc64-varargs-struct.c @@ -23,4 +23,8 @@ void testva (int n, ...) // CHECK: add i64 %{{[0-9]+}}, 4 // CHECK: inttoptr i64 %{{[0-9]+}} to i8* // CHECK: bitcast i8* %{{[0-9]+}} to i32* + + __int128_t u = va_arg (ap, __int128_t); +// CHECK: bitcast i8* %{{[a-z.0-9]+}} to i128* +// CHECK-NEXT: load i128* %{{[0-9]+}} } |