[Demangle] Add a few more options to the microsoft demangler
[llvm-complete.git] / test / CodeGen / MIR / Generic / machine-function-missing-name.mir
blobbc279a6ecfdc7cd4ef6c99f3445d52d5a3abe16c
1 # RUN: not llc -run-pass none -o /dev/null %s 2>&1 | FileCheck %s
2 # This test ensures that an error is reported when a machine function doesn't
3 # have a name attribute.
5 --- |
7   define i32 @foo() {
8     ret i32 0
9   }
11   define i32 @bar() {
12     ret i32 0
13   }
15 ...
16 ---
17 # CHECK: [[@LINE+1]]:1: missing required key 'name'
18 nme:             foo
19 ...
20 ---
21 name:            bar
22 ...