f608195387f5c327f269e3aac536a72a95a8d806
[oota-llvm.git] / test / CodeGen / MIR / X86 / duplicate-memory-operand-flag.mir
1 # RUN: not llc -march=x86-64 -start-after branch-folder -stop-after branch-folder -o /dev/null %s 2>&1 | FileCheck %s
2
3 --- |
4
5   define i32 @volatile_inc(i32* %x) {
6   entry:
7     %0 = load volatile i32, i32* %x
8     %1 = add i32 %0, 1
9     store volatile i32 %1, i32* %x
10     ret i32 %1
11   }
12
13 ...
14 ---
15 name:            volatile_inc
16 tracksRegLiveness: true
17 liveins:
18   - { reg: '%rdi' }
19 body:
20   - id:          0
21     name:        entry
22     liveins:     [ '%rdi' ]
23     instructions:
24 # CHECK: [[@LINE+1]]:55: duplicate 'volatile' memory operand flag
25       - '%eax = MOV32rm %rdi, 1, _, 0, _ :: (volatile volatile load 4 from %ir.x)'
26       - '%eax = INC32r killed %eax, implicit-def dead %eflags'
27       - 'MOV32mr killed %rdi, 1, _, 0, _, %eax :: (volatile store 4 into %ir.x)'
28       - 'RETQ %eax'
29 ...