You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
443 B

# RUN: not llc -start-after branch-folder -stop-after branch-folder -o /dev/null %s 2>&1 | FileCheck %s
# This test ensures that an error is reported when a machine function doesn't
# have a name attribute.
--- |
define i32 @foo() {
ret i32 0
}
define i32 @bar() {
ret i32 0
}
...
---
# CHECK: [[@LINE+1]]:1: missing required key 'name'
nme: foo
body: |
bb.0:
...
---
name: bar
body: |
bb.0:
...