• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1; RUN: llc < %s -march=x86-64 | grep movup | count 2
2
3define <4 x float> @foo(<4 x float>* %p, <4 x float> %x) nounwind {
4  %t = load <4 x float>* %p, align 4
5  %z = fmul <4 x float> %t, %x
6  ret <4 x float> %z
7}
8define <2 x double> @bar(<2 x double>* %p, <2 x double> %x) nounwind {
9  %t = load <2 x double>* %p, align 8
10  %z = fmul <2 x double> %t, %x
11  ret <2 x double> %z
12}
13