[test] Pre-commit llvm.experimental.memset.pattern tests prior to MemoryLocation...
[llvm-project.git] / llvm / test / tools / gold / X86 / vectorize.ll
blob01f9c8f6950a38e2cf923bd25abc1b935a23da76
1 ; RUN: llvm-as %s -o %t.o
3 ; RUN: %gold -m elf_x86_64 -plugin %llvmshlibdir/LLVMgold%shlibext \
4 ; RUN:    --plugin-opt=save-temps -shared %t.o -o %t2.o
5 ; RUN: llvm-dis %t2.o.0.4.opt.bc -o - | FileCheck %s
7 ; test that the vectorizer is run.
8 ; CHECK: fadd <4 x float>
10 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
11 target triple = "x86_64-unknown-linux-gnu"
13 define void @f(ptr nocapture %x, i64 %n) {
14 bb:
15   br label %bb1
17 bb1:
18   %i.0 = phi i64 [ 0, %bb ], [ %tmp4, %bb1 ]
19   %tmp = getelementptr inbounds float, ptr %x, i64 %i.0
20   %tmp2 = load float, ptr %tmp, align 4
21   %tmp3 = fadd float %tmp2, 1.000000e+00
22   store float %tmp3, ptr %tmp, align 4
23   %tmp4 = add nsw i64 %i.0, 1
24   %tmp5 = icmp slt i64 %tmp4, %n
25   br i1 %tmp5, label %bb1, label %bb6
27 bb6:
28   ret void