diff options
-rw-r--r-- | test/CodeGen/ppc64-varargs-struct.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/CodeGen/ppc64-varargs-struct.c b/test/CodeGen/ppc64-varargs-struct.c index e69332ead4..61c33b0529 100644 --- a/test/CodeGen/ppc64-varargs-struct.c +++ b/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]+}} } |