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