31 lines · plain
1; RUN: llvm-as %s -o %t.o2 3; RUN: %gold -m elf_x86_64 -plugin %llvmshlibdir/LLVMgold%shlibext \4; RUN: --plugin-opt=save-temps -shared %t.o -o %t2.o5; RUN: llvm-dis %t2.o.0.4.opt.bc -o - | FileCheck %s6 7; test that the vectorizer is run.8; CHECK: fadd <4 x float>9 10target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"11target triple = "x86_64-unknown-linux-gnu"12 13define void @f(ptr nocapture %x) {14 %tmp = load float, ptr %x, align 415 %add = fadd float %tmp, 1.000000e+0016 store float %add, ptr %x, align 417 %arrayidx1 = getelementptr inbounds float, ptr %x, i64 118 %tmp1 = load float, ptr %arrayidx1, align 419 %add2 = fadd float %tmp1, 1.000000e+0020 store float %add2, ptr %arrayidx1, align 421 %arrayidx3 = getelementptr inbounds float, ptr %x, i64 222 %tmp2 = load float, ptr %arrayidx3, align 423 %add4 = fadd float %tmp2, 1.000000e+0024 store float %add4, ptr %arrayidx3, align 425 %arrayidx5 = getelementptr inbounds float, ptr %x, i64 326 %tmp3 = load float, ptr %arrayidx5, align 427 %add6 = fadd float %tmp3, 1.000000e+0028 store float %add6, ptr %arrayidx5, align 429 ret void30}31