[ARM] Adjust how NEON shifts are lowered
[llvm-core.git] / test / CodeGen / X86 / inline-asm-duplicated-constraint.ll
blob0228f45ce96c1b5118a0945888b3a36c32cbb11f
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(i32* %l) {
9   %load = load i32, i32* %l
10   call void asm "nop", "=*rmrm,0m0m,~{dirflag},~{fpsr},~{flags}"(i32* %l, i32 %load)
11   ret void