Home | History | Annotate | Download | only in X86
      1 ; RUN: llc < %s -mtriple=x86_64-linux | FileCheck %s
      2 ; CHECK-NOT:     mov
      3 
      4 define <4 x float> @foo(<4 x float>* %p, <4 x float> %x) nounwind {
      5   %t = load <4 x float>, <4 x float>* %p
      6   %z = fmul <4 x float> %t, %x
      7   ret <4 x float> %z
      8 }
      9 define <2 x double> @bar(<2 x double>* %p, <2 x double> %x) nounwind {
     10   %t = load <2 x double>, <2 x double>* %p
     11   %z = fmul <2 x double> %t, %x
     12   ret <2 x double> %z
     13 }
     14