[Reland][Runtimes] Merge 'compile_commands.json' files from runtimes build (#116303)
[llvm-project.git] / llvm / test / CodeGen / X86 / inline-asm-duplicated-constraint.ll
blobbbc41a44d7852bbe66fd931ffb2fb77558c7f026
1 ; RUN: llc < %s -no-integrated-as -mtriple=x86_64-linux-gnu | FileCheck %s
3 ; CHECK-LABEL: test1:
4 ; CHECK: movl   (%rdi), %eax
5 ; CHECK: nop
6 ; CHECK: movl   %eax, (%rdi)
7 ; CHECK: ret
8 define void @test1(ptr %l) {
9   %load = load i32, ptr %l
10   call void asm "nop", "=*rmrm,0m0m,~{dirflag},~{fpsr},~{flags}"(ptr elementtype(i32) %l, i32 %load)
11   ret void