1*9880d681SAndroid Build Coastguard Worker; RUN: llc < %s -O0 2*9880d681SAndroid Build Coastguard Worker; PR8357 3*9880d681SAndroid Build Coastguard Workertarget datalayout = "E-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v128:128:128-n32" 4*9880d681SAndroid Build Coastguard Workertarget triple = "powerpc-unknown-freebsd9.0" 5*9880d681SAndroid Build Coastguard Worker 6*9880d681SAndroid Build Coastguard Worker; RegAllocFast requires that each physreg only be used once. The varargs 7*9880d681SAndroid Build Coastguard Worker; lowering code needs to use virtual registers when storing live-in registers on 8*9880d681SAndroid Build Coastguard Worker; the stack. 9*9880d681SAndroid Build Coastguard Worker 10*9880d681SAndroid Build Coastguard Workerdefine i32 @testing(i32 %x, float %a, ...) nounwind { 11*9880d681SAndroid Build Coastguard Worker %1 = alloca i32, align 4 12*9880d681SAndroid Build Coastguard Worker %2 = alloca float, align 4 13*9880d681SAndroid Build Coastguard Worker store i32 %x, i32* %1, align 4 14*9880d681SAndroid Build Coastguard Worker store float %a, float* %2, align 4 15*9880d681SAndroid Build Coastguard Worker ret i32 0 16*9880d681SAndroid Build Coastguard Worker} 17