1 ; RUN: opt %loadPolly -polly-codegen-ppcg -polly-acc-dump-code %s
7 ; This fails today with "type mismatch between callee prototype and arguments"
9 ; void foo(fp128 A[], fp128 b) {
10 ; for (long i = 0; i < 1024; i++)
14 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
16 define void @fp128(fp128* %A, fp128 %b) {
20 bb1: ; preds = %bb5, %bb
21 %i.0 = phi i64 [ 0, %bb ], [ %tmp6, %bb5 ]
22 %exitcond = icmp ne i64 %i.0, 1024
23 br i1 %exitcond, label %bb2, label %bb7
26 %tmp = getelementptr inbounds fp128, fp128* %A, i64 %i.0
27 %tmp3 = load fp128, fp128* %tmp, align 4
28 %tmp4 = fadd fp128 %tmp3, %b
29 store fp128 %tmp4, fp128* %tmp, align 4
33 %tmp6 = add nuw nsw i64 %i.0, 1