1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00
llvm-mirror/test/CodeGen/Generic/2007-04-27-LargeMemObject.ll
Anton Korobeynikov 1134867d55 This is not failing anymore
llvm-svn: 57347
2008-10-10 10:15:18 +00:00

14 lines
552 B
LLVM

; RUN: llvm-as < %s | llc
%struct..0anon = type { [100 x i32] }
define void @test() {
entry:
%currfpu = alloca %struct..0anon, align 16 ; <%struct..0anon*> [#uses=2]
%mxcsr = alloca %struct..0anon, align 16 ; <%struct..0anon*> [#uses=1]
call void asm sideeffect "fnstenv $0", "=*m,~{dirflag},~{fpsr},~{flags}"( %struct..0anon* %currfpu )
call void asm sideeffect "$0 $1", "=*m,*m,~{dirflag},~{fpsr},~{flags}"( %struct..0anon* %mxcsr, %struct..0anon* %currfpu )
ret void
}