1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 12:33:33 +02:00
llvm-mirror/test/CodeGen/X86/2006-07-20-InlineAsm.ll
Chris Lattner 6556ee94c9 update for new inline asm syntax
llvm-svn: 36526
2007-04-28 05:20:26 +00:00

25 lines
715 B
LLVM

; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86
; PR833
%G = weak global int 0 ; <int*> [#uses=3]
implementation ; Functions:
int %foo(int %X) {
entry:
%X_addr = alloca int ; <int*> [#uses=3]
store int %X, int* %X_addr
call void asm sideeffect "xchg{l} {$0,$1|$1,$0}", "=*m,=*r,m,1,~{dirflag},~{fpsr},~{flags}"( int* %G, int* %X_addr, int* %G, int %X )
%tmp1 = load int* %X_addr ; <int> [#uses=1]
ret int %tmp1
}
int %foo2(int %X) {
entry:
%X_addr = alloca int ; <int*> [#uses=3]
store int %X, int* %X_addr
call void asm sideeffect "xchg{l} {$0,$1|$1,$0}", "=*m,=*r,1,~{dirflag},~{fpsr},~{flags}"( int* %G, int* %X_addr, int %X )
%tmp1 = load int* %X_addr ; <int> [#uses=1]
ret int %tmp1
}