[ARM] Adjust how NEON shifts are lowered
[llvm-core.git] / test / CodeGen / X86 / machine-cp-debug.mir
bloba3230e8910cb3783730fa81f3621ff0e972f943f
1 # RUN: llc -mtriple=x86_64-unknown-linux-gnu -run-pass=machine-cp %s -o - | FileCheck %s
3 # Machine copy propagation can remove dead copies. Make sure that the
4 # DBG_VALUE does not keep the copy alive.
6 # CHECK-NOT: $ebx = COPY $eax
8 --- |
9   define void @fred() {
10     ret void
11   }
12   !1 = !DIExpression()
13 ...
15 ---
16 name: fred
17 tracksRegLiveness: true
18 body: |
19   bb.0:
20     liveins: $eax
21     $ebx = COPY $eax
22     DBG_VALUE $ebx, _, !1, !1
23 ...