Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git] / llvm / test / CodeGen / X86 / 2006-07-20-InlineAsm.ll
blob3eb56ba8dc1b2822d2e3e823c86121283d2b36cd
1 ; RUN: llc < %s -mtriple=i686-- -no-integrated-as
2 ; PR833
4 @G = weak global i32 0          ; <ptr> [#uses=3]
6 define i32 @foo(i32 %X) {
7 entry:
8         %X_addr = alloca i32            ; <ptr> [#uses=3]
9         store i32 %X, ptr %X_addr
10         call void asm sideeffect "xchg{l} {$0,$1|$1,$0}", "=*m,=*r,m,1,~{dirflag},~{fpsr},~{flags}"(ptr elementtype(i32) @G, ptr elementtype(i32) %X_addr, ptr @G, i32 %X )
11         %tmp1 = load i32, ptr %X_addr           ; <i32> [#uses=1]
12         ret i32 %tmp1
15 define i32 @foo2(i32 %X) {
16 entry:
17         %X_addr = alloca i32            ; <ptr> [#uses=3]
18         store i32 %X, ptr %X_addr
19         call void asm sideeffect "xchg{l} {$0,$1|$1,$0}", "=*m,=*r,1,~{dirflag},~{fpsr},~{flags}"(ptr elementtype(i32) @G, ptr elementtype(i32) %X_addr, i32 %X )
20         %tmp1 = load i32, ptr %X_addr           ; <i32> [#uses=1]
21         ret i32 %tmp1