[mlir][PDLL] Allow (and ignore) `-D` tablegen macros. (#124166)
[llvm-project.git] / llvm / test / CodeGen / MIR / X86 / unknown-register.mir
blobc8f007874c35da088a5184b1345da436f7d82ec7
1 # RUN: not llc -mtriple=x86_64 -run-pass none -o /dev/null %s 2>&1 | FileCheck %s
2 # This test ensures that an error is reported when an unknown register is
3 # encountered.
5 --- |
7   define i32 @foo() {
8   entry:
9     ret i32 0
10   }
12 ...
13 ---
14 name:            foo
15 body: |
16   bb.0.entry:
17     ; CHECK: [[@LINE+1]]:5: unknown register name 'xax'
18     $xax = MOV32r0
19     RET64 $xax
20 ...