blob: d9efaa5c085fa05aa511cf2f9979de968178da2f [file] [log] [blame]
Jiangning Liu40c1b352015-01-05 10:08:58 +00001target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
2
3; RUN: opt < %s -S -loop-vectorize -debug-only=loop-vectorize 2>&1 | FileCheck %s
Michael Kuperstein6ae456b2015-01-05 12:34:01 +00004; REQUIRES: asserts
Jiangning Liu40c1b352015-01-05 10:08:58 +00005; CHECK: LV: Can't vectorize due to memory conflicts
6
7define void @test_loop_novect(double** %arr, i64 %n) {
8for.body.lr.ph:
David Blaikiea79ac142015-02-27 21:17:42 +00009 %t = load double*, double** %arr, align 8
Jiangning Liu40c1b352015-01-05 10:08:58 +000010 br label %for.body
11
12for.body: ; preds = %for.body, %for.body.lr.ph
13 %i = phi i64 [ 0, %for.body.lr.ph ], [ %i.next, %for.body ]
David Blaikie79e6c742015-02-27 19:29:02 +000014 %a = getelementptr inbounds double, double* %t, i64 %i
Jiangning Liu40c1b352015-01-05 10:08:58 +000015 %i.next = add nuw nsw i64 %i, 1
David Blaikie79e6c742015-02-27 19:29:02 +000016 %a.next = getelementptr inbounds double, double* %t, i64 %i.next
David Blaikiea79ac142015-02-27 21:17:42 +000017 %t1 = load double, double* %a, align 8
18 %t2 = load double, double* %a.next, align 8
Jiangning Liu40c1b352015-01-05 10:08:58 +000019 store double %t1, double* %a.next, align 8
20 store double %t2, double* %a, align 8
21 %c = icmp eq i64 %i, %n
22 br i1 %c, label %final, label %for.body
23
24final: ; preds = %for.body
25 ret void
26}