1*f4a2713aSLionel Sambuc // REQUIRES: ppc64-registered-target 2*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -triple powerpc64-unknown-linux-gnu -emit-llvm -o - %s | FileCheck %s 3*f4a2713aSLionel Sambuc 4*f4a2713aSLionel Sambuc #include <stdarg.h> 5*f4a2713aSLionel Sambuc 6*f4a2713aSLionel Sambuc void testva (int n, ...) 7*f4a2713aSLionel Sambuc { 8*f4a2713aSLionel Sambuc va_list ap; 9*f4a2713aSLionel Sambuc 10*f4a2713aSLionel Sambuc _Complex int i = va_arg(ap, _Complex int); 11*f4a2713aSLionel Sambuc // CHECK: %[[VAR40:[A-Za-z0-9.]+]] = load i8** %[[VAR100:[A-Za-z0-9.]+]] 12*f4a2713aSLionel Sambuc // CHECK-NEXT: %[[VAR41:[A-Za-z0-9.]+]] = getelementptr i8* %[[VAR40]], i64 16 13*f4a2713aSLionel Sambuc // CHECK-NEXT: store i8* %[[VAR41]], i8** %[[VAR100]] 14*f4a2713aSLionel Sambuc // CHECK-NEXT: %[[VAR1:[A-Za-z0-9.]+]] = ptrtoint i8* %[[VAR40]] to i64 15*f4a2713aSLionel Sambuc // CHECK-NEXT: %[[VAR2:[A-Za-z0-9.]+]] = add i64 %[[VAR1]], 4 16*f4a2713aSLionel Sambuc // CHECK-NEXT: %[[VAR3:[A-Za-z0-9.]+]] = add i64 %[[VAR1]], 12 17*f4a2713aSLionel Sambuc // CHECK-NEXT: %[[VAR4:[A-Za-z0-9.]+]] = inttoptr i64 %[[VAR2]] to i32* 18*f4a2713aSLionel Sambuc // CHECK-NEXT: %[[VAR5:[A-Za-z0-9.]+]] = inttoptr i64 %[[VAR3]] to i32* 19*f4a2713aSLionel Sambuc // CHECK-NEXT: %[[VAR6:[A-Za-z0-9.]+]] = load i32* %[[VAR4]] 20*f4a2713aSLionel Sambuc // CHECK-NEXT: %[[VAR7:[A-Za-z0-9.]+]] = load i32* %[[VAR5]] 21*f4a2713aSLionel Sambuc // CHECK-NEXT: %[[VAR8:[A-Za-z0-9.]+]] = getelementptr inbounds { i32, i32 }* %[[VAR0:[A-Za-z0-9.]+]], i32 0, i32 0 22*f4a2713aSLionel Sambuc // CHECK-NEXT: %[[VAR9:[A-Za-z0-9.]+]] = getelementptr inbounds { i32, i32 }* %[[VAR0]], i32 0, i32 1 23*f4a2713aSLionel Sambuc // CHECK-NEXT: store i32 %[[VAR6]], i32* %[[VAR8]] 24*f4a2713aSLionel Sambuc // CHECK-NEXT: store i32 %[[VAR7]], i32* %[[VAR9]] 25*f4a2713aSLionel Sambuc 26*f4a2713aSLionel Sambuc _Complex short s = va_arg(ap, _Complex short); 27*f4a2713aSLionel Sambuc // CHECK: %[[VAR50:[A-Za-z0-9.]+]] = load i8** %[[VAR100:[A-Za-z0-9.]+]] 28*f4a2713aSLionel Sambuc // CHECK-NEXT: %[[VAR51:[A-Za-z0-9.]+]] = getelementptr i8* %[[VAR50]], i64 16 29*f4a2713aSLionel Sambuc // CHECK-NEXT: store i8* %[[VAR51]], i8** %[[VAR100]] 30*f4a2713aSLionel Sambuc // CHECK: %[[VAR11:[A-Za-z0-9.]+]] = ptrtoint i8* %{{[A-Za-z0-9.]+}} to i64 31*f4a2713aSLionel Sambuc // CHECK-NEXT: %[[VAR12:[A-Za-z0-9.]+]] = add i64 %[[VAR11]], 6 32*f4a2713aSLionel Sambuc // CHECK-NEXT: %[[VAR13:[A-Za-z0-9.]+]] = add i64 %[[VAR11]], 14 33*f4a2713aSLionel Sambuc // CHECK-NEXT: %[[VAR14:[A-Za-z0-9.]+]] = inttoptr i64 %[[VAR12]] to i16* 34*f4a2713aSLionel Sambuc // CHECK-NEXT: %[[VAR15:[A-Za-z0-9.]+]] = inttoptr i64 %[[VAR13]] to i16* 35*f4a2713aSLionel Sambuc // CHECK-NEXT: %[[VAR16:[A-Za-z0-9.]+]] = load i16* %[[VAR14]] 36*f4a2713aSLionel Sambuc // CHECK-NEXT: %[[VAR17:[A-Za-z0-9.]+]] = load i16* %[[VAR15]] 37*f4a2713aSLionel Sambuc // CHECK-NEXT: %[[VAR18:[A-Za-z0-9.]+]] = getelementptr inbounds { i16, i16 }* %[[VAR10:[A-Za-z0-9.]+]], i32 0, i32 0 38*f4a2713aSLionel Sambuc // CHECK-NEXT: %[[VAR19:[A-Za-z0-9.]+]] = getelementptr inbounds { i16, i16 }* %[[VAR10]], i32 0, i32 1 39*f4a2713aSLionel Sambuc // CHECK-NEXT: store i16 %[[VAR16]], i16* %[[VAR18]] 40*f4a2713aSLionel Sambuc // CHECK-NEXT: store i16 %[[VAR17]], i16* %[[VAR19]] 41*f4a2713aSLionel Sambuc 42*f4a2713aSLionel Sambuc _Complex char c = va_arg(ap, _Complex char); 43*f4a2713aSLionel Sambuc // CHECK: %[[VAR60:[A-Za-z0-9.]+]] = load i8** %[[VAR100:[A-Za-z0-9.]+]] 44*f4a2713aSLionel Sambuc // CHECK-NEXT: %[[VAR61:[A-Za-z0-9.]+]] = getelementptr i8* %[[VAR60]], i64 16 45*f4a2713aSLionel Sambuc // CHECK-NEXT: store i8* %[[VAR61]], i8** %[[VAR100]] 46*f4a2713aSLionel Sambuc // CHECK: %[[VAR21:[A-Za-z0-9.]+]] = ptrtoint i8* %{{[A-Za-z0-9.]+}} to i64 47*f4a2713aSLionel Sambuc // CHECK-NEXT: %[[VAR22:[A-Za-z0-9.]+]] = add i64 %[[VAR21]], 7 48*f4a2713aSLionel Sambuc // CHECK-NEXT: %[[VAR23:[A-Za-z0-9.]+]] = add i64 %[[VAR21]], 15 49*f4a2713aSLionel Sambuc // CHECK-NEXT: %[[VAR24:[A-Za-z0-9.]+]] = inttoptr i64 %[[VAR22]] to i8* 50*f4a2713aSLionel Sambuc // CHECK-NEXT: %[[VAR25:[A-Za-z0-9.]+]] = inttoptr i64 %[[VAR23]] to i8* 51*f4a2713aSLionel Sambuc // CHECK-NEXT: %[[VAR26:[A-Za-z0-9.]+]] = load i8* %[[VAR24]] 52*f4a2713aSLionel Sambuc // CHECK-NEXT: %[[VAR27:[A-Za-z0-9.]+]] = load i8* %[[VAR25]] 53*f4a2713aSLionel Sambuc // CHECK-NEXT: %[[VAR28:[A-Za-z0-9.]+]] = getelementptr inbounds { i8, i8 }* %[[VAR20:[A-Za-z0-9.]+]], i32 0, i32 0 54*f4a2713aSLionel Sambuc // CHECK-NEXT: %[[VAR29:[A-Za-z0-9.]+]] = getelementptr inbounds { i8, i8 }* %[[VAR20]], i32 0, i32 1 55*f4a2713aSLionel Sambuc // CHECK-NEXT: store i8 %[[VAR26]], i8* %[[VAR28]] 56*f4a2713aSLionel Sambuc // CHECK-NEXT: store i8 %[[VAR27]], i8* %[[VAR29]] 57*f4a2713aSLionel Sambuc 58*f4a2713aSLionel Sambuc _Complex float f = va_arg(ap, _Complex float); 59*f4a2713aSLionel Sambuc // CHECK: %[[VAR70:[A-Za-z0-9.]+]] = load i8** %[[VAR100:[A-Za-z0-9.]+]] 60*f4a2713aSLionel Sambuc // CHECK-NEXT: %[[VAR71:[A-Za-z0-9.]+]] = getelementptr i8* %[[VAR70]], i64 16 61*f4a2713aSLionel Sambuc // CHECK-NEXT: store i8* %[[VAR71]], i8** %[[VAR100]] 62*f4a2713aSLionel Sambuc // CHECK: %[[VAR31:[A-Za-z0-9.]+]] = ptrtoint i8* %{{[A-Za-z0-9.]+}} to i64 63*f4a2713aSLionel Sambuc // CHECK-NEXT: %[[VAR32:[A-Za-z0-9.]+]] = add i64 %[[VAR31]], 4 64*f4a2713aSLionel Sambuc // CHECK-NEXT: %[[VAR33:[A-Za-z0-9.]+]] = add i64 %[[VAR31]], 12 65*f4a2713aSLionel Sambuc // CHECK-NEXT: %[[VAR34:[A-Za-z0-9.]+]] = inttoptr i64 %[[VAR32]] to float* 66*f4a2713aSLionel Sambuc // CHECK-NEXT: %[[VAR35:[A-Za-z0-9.]+]] = inttoptr i64 %[[VAR33]] to float* 67*f4a2713aSLionel Sambuc // CHECK-NEXT: %[[VAR36:[A-Za-z0-9.]+]] = load float* %[[VAR34]] 68*f4a2713aSLionel Sambuc // CHECK-NEXT: %[[VAR37:[A-Za-z0-9.]+]] = load float* %[[VAR35]] 69*f4a2713aSLionel Sambuc // CHECK-NEXT: %[[VAR38:[A-Za-z0-9.]+]] = getelementptr inbounds { float, float }* %[[VAR30:[A-Za-z0-9.]+]], i32 0, i32 0 70*f4a2713aSLionel Sambuc // CHECK-NEXT: %[[VAR39:[A-Za-z0-9.]+]] = getelementptr inbounds { float, float }* %[[VAR30]], i32 0, i32 1 71*f4a2713aSLionel Sambuc // CHECK-NEXT: store float %[[VAR36]], float* %[[VAR38]] 72*f4a2713aSLionel Sambuc // CHECK-NEXT: store float %[[VAR37]], float* %[[VAR39]] 73*f4a2713aSLionel Sambuc } 74