1 ; RUN: opt %loadPolly \
2 ; RUN: -polly-codegen -S < %s | FileCheck %s
13 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
15 define void @f(ptr %A) {
21 %cmp = icmp eq i32 %call, 0
22 br i1 %cmp, label %if.then, label %if.else
24 if.then: ; preds = %entry
25 %tmp1 = load i32, ptr %A, align 4
26 %add = add nsw i32 %tmp1, 1
27 store i32 %add, ptr %A, align 4
30 if.else: ; preds = %entry
31 %tmp2 = load i32, ptr %A, align 4
32 %sub = add nsw i32 %tmp2, -1
33 store i32 %sub, ptr %A, align 4
36 if.end: ; preds = %if.else, %if.then
42 attributes #0 = { nounwind readnone }