[Polly] Add handling of Top Level Regions
[polly-mirror.git] / test / GPGPU / scalar-parameter-x86_fp80.ll
blobd43de165dcd1fe6e1fab6484f655356676983a34
1 ; RUN: opt %loadPolly -polly-codegen-ppcg -polly-acc-dump-code -disable-output %s
3 ; XFAIL: *
5 ; REQUIRES: pollyacc,nvptx
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++)
11 ;        A[i] += b;
12 ;    }
14 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
16 define void @fp128(fp128* %A, fp128 %b) {
17 bb:
18   br label %bb1
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
25 bb2:                                              ; preds = %bb1
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
30   br label %bb5
32 bb5:                                              ; preds = %bb2
33   %tmp6 = add nuw nsw i64 %i.0, 1
34   br label %bb1
36 bb7:                                              ; preds = %bb1
37   ret void