Modify two Transforms tests to explicitly check for full function names in some cases...
[oota-llvm.git] / test / Transforms / SLPVectorizer / X86 / reduction2.ll
1 ; RUN: opt < %s -basicaa -slp-vectorizer -dce -S -mtriple=i386-apple-macosx10.8.0 -mcpu=corei7-avx | FileCheck %s
2
3 target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:128:128-n8:16:32-S128"
4 target triple = "i386-apple-macosx10.8.0"
5
6 ;CHECK: @foo
7 ;CHECK: load <2 x double>
8 ;CHECK: ret
9 define double @foo(double* nocapture %D) {
10   br label %1
11
12 ; <label>:1                                       ; preds = %1, %0
13   %i.02 = phi i32 [ 0, %0 ], [ %10, %1 ]
14   %sum.01 = phi double [ 0.000000e+00, %0 ], [ %9, %1 ]
15   %2 = shl nsw i32 %i.02, 1
16   %3 = getelementptr inbounds double* %D, i32 %2
17   %4 = load double* %3, align 4
18   %A4 = fmul double %4, %4
19   %5 = or i32 %2, 1
20   %6 = getelementptr inbounds double* %D, i32 %5
21   %7 = load double* %6, align 4
22   %A7 = fmul double %7, %7
23   %8 = fadd double %A4, %A7
24   %9 = fadd double %sum.01, %8
25   %10 = add nsw i32 %i.02, 1
26   %exitcond = icmp eq i32 %10, 100
27   br i1 %exitcond, label %11, label %1
28
29 ; <label>:11                                      ; preds = %1
30   ret double %9
31 }
32