Revert "[lldb][test] Remove compiler version check and use regex" (#124101)
[llvm-project.git] / llvm / test / CodeGen / MIR / X86 / register-operands-target-flag-error.mir
blobe103385cddc01f1d2fe912936b24985c45add1be
1 # RUN: not llc -mtriple=x86_64 -run-pass none -o /dev/null %s 2>&1 | FileCheck %s
3 --- |
5   @G = external global i32
7   define i32 @inc() {
8   entry:
9     %a = load i32, ptr @G
10     %b = add i32 %a, 1
11     ret i32 %b
12   }
14 ...
15 ---
16 name: inc
17 body: |
18   bb.0.entry:
19   ; CHECK: [[@LINE+1]]:42: register operands can't have target flags
20     $rax = MOV64rm target-flags(x86-got) $rip, 1, _, @G, _
21     $eax = MOV32rm killed $rax, 1, _, 0, _
22     $eax = INC32r killed $eax, implicit-def dead $eflags
23     RET64 $eax
24 ...