1 ; RUN: opt %loadPolly -polly-import-jscop -polly-import-jscop-postfix=transformed -polly-simplify -analyze < %s | FileCheck -match-full-lines %s
3 ; Do not combine stores that write different values.
5 ; for (int j = 0; j < n; j += 1) {
10 define void @nocoalesce_differentvalues(i32 %n, double* noalias nonnull %A) {
15 %j = phi i32 [0, %entry], [%j.inc, %inc]
16 %j.cmp = icmp slt i32 %j, %n
17 br i1 %j.cmp, label %body, label %exit
20 store double 21.0, double* %A
21 store double 42.0, double* %A
25 %j.inc = add nuw nsw i32 %j, 1
37 ; CHECK: Overwrites removed: 0
38 ; CHECK: Partial writes coalesced: 0
41 ; CHECK: SCoP could not be simplified