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

« back to all changes in this revision

Viewing changes to test/CodeGen/X86/complex-asm.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 -mtriple=x86_64-apple-darwin
 
2
; This formerly crashed.
 
3
 
 
4
%0 = type { i64, i64 }
 
5
 
 
6
define %0 @f() nounwind ssp {
 
7
entry:
 
8
  %v = alloca %0, align 8
 
9
  call void asm sideeffect "", "=*r,r,r,0,~{dirflag},~{fpsr},~{flags}"(%0* %v, i32 0, i32 1, i128 undef) nounwind
 
10
  %0 = getelementptr inbounds %0* %v, i64 0, i32 0
 
11
  %1 = load i64* %0, align 8
 
12
  %2 = getelementptr inbounds %0* %v, i64 0, i32 1
 
13
  %3 = load i64* %2, align 8
 
14
  %mrv4 = insertvalue %0 undef, i64 %1, 0
 
15
  %mrv5 = insertvalue %0 %mrv4, i64 %3, 1
 
16
  ret %0 %mrv5
 
17
}