make this test harder, include a tied register.

llvm-svn: 37600
This commit is contained in:
Chris Lattner 2007-06-15 19:09:53 +00:00
parent 234a90e83e
commit 2d7f447a7a
1 changed files with 7 additions and 0 deletions

View File

@ -15,3 +15,10 @@ define void @test3() {
ret void
}
define void @test4() {
%tmp1 = tail call float asm "", "=x,0,~{dirflag},~{fpsr},~{flags}"( float 0x47EFFFFFE0000000 ); <float> [#uses=1]
%tmp4 = sub float %tmp1, 0x3810000000000000 ; <float> [#uses=1]
tail call void asm sideeffect "", "x,~{dirflag},~{fpsr},~{flags}"( float %tmp4 )
ret void
}