~ubuntu-branches/ubuntu/quantal/llvm-3.1/quantal

« back to all changes in this revision

Viewing changes to test/CodeGen/X86/sse-align-6.ll

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2012-03-29 19:09:51 UTC
  • Revision ID: package-import@ubuntu.com-20120329190951-aq83ivog4cg8bxun
Tags: upstream-3.1~svn153643
ImportĀ upstreamĀ versionĀ 3.1~svn153643

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
; RUN: llc < %s -march=x86-64 | grep movdqu | count 1
 
2
 
 
3
define <2 x i64> @bar(<2 x i64>* %p, <2 x i64> %x) nounwind {
 
4
  %t = load <2 x i64>* %p, align 8
 
5
  %z = mul <2 x i64> %t, %x
 
6
  ret <2 x i64> %z
 
7
}