Home | History | Annotate | Download | only in X86
      1 ; RUN: llvm-as %s -o %t.o
      2 
      3 ; RUN: %gold -m elf_x86_64 -plugin %llvmshlibdir/LLVMgold.so \
      4 ; RUN:    --plugin-opt=save-temps \
      5 ; RUN:    -shared %t.o -o %t2.o
      6 ; RUN: llvm-dis %t2.o.opt.bc -o - | FileCheck %s
      7 
      8 ; test that the vectorizer is run.
      9 ; CHECK: fadd <4 x float>
     10 
     11 target triple = "x86_64-unknown-linux-gnu"
     12 
     13 define void @f(float* nocapture %x) {
     14   %tmp = load float, float* %x, align 4
     15   %add = fadd float %tmp, 1.000000e+00
     16   store float %add, float* %x, align 4
     17   %arrayidx1 = getelementptr inbounds float, float* %x, i64 1
     18   %tmp1 = load float, float* %arrayidx1, align 4
     19   %add2 = fadd float %tmp1, 1.000000e+00
     20   store float %add2, float* %arrayidx1, align 4
     21   %arrayidx3 = getelementptr inbounds float, float* %x, i64 2
     22   %tmp2 = load float, float* %arrayidx3, align 4
     23   %add4 = fadd float %tmp2, 1.000000e+00
     24   store float %add4, float* %arrayidx3, align 4
     25   %arrayidx5 = getelementptr inbounds float, float* %x, i64 3
     26   %tmp3 = load float, float* %arrayidx5, align 4
     27   %add6 = fadd float %tmp3, 1.000000e+00
     28   store float %add6, float* %arrayidx5, align 4
     29   ret void
     30 }
     31