1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00
llvm-mirror/test/CodeGen/X86/2006-07-20-InlineAsm.ll

24 lines
707 B
LLVM
Raw Normal View History

; RUN: llc < %s -mtriple=i686-- -no-integrated-as
2006-07-20 21:04:36 +02:00
; PR833
2008-03-25 05:26:08 +01:00
@G = weak global i32 0 ; <i32*> [#uses=3]
2006-07-20 21:04:36 +02:00
2008-03-25 05:26:08 +01:00
define i32 @foo(i32 %X) {
2006-07-20 21:04:36 +02:00
entry:
2008-03-25 05:26:08 +01:00
%X_addr = alloca i32 ; <i32*> [#uses=3]
store i32 %X, i32* %X_addr
call void asm sideeffect "xchg{l} {$0,$1|$1,$0}", "=*m,=*r,m,1,~{dirflag},~{fpsr},~{flags}"( i32* @G, i32* %X_addr, i32* @G, i32 %X )
%tmp1 = load i32, i32* %X_addr ; <i32> [#uses=1]
2008-03-25 05:26:08 +01:00
ret i32 %tmp1
2006-07-20 21:04:36 +02:00
}
2008-03-25 05:26:08 +01:00
define i32 @foo2(i32 %X) {
2006-07-20 21:04:36 +02:00
entry:
2008-03-25 05:26:08 +01:00
%X_addr = alloca i32 ; <i32*> [#uses=3]
store i32 %X, i32* %X_addr
call void asm sideeffect "xchg{l} {$0,$1|$1,$0}", "=*m,=*r,1,~{dirflag},~{fpsr},~{flags}"( i32* @G, i32* %X_addr, i32 %X )
%tmp1 = load i32, i32* %X_addr ; <i32> [#uses=1]
2008-03-25 05:26:08 +01:00
ret i32 %tmp1
2006-07-20 21:04:36 +02:00
}
2008-03-25 05:26:08 +01:00