llvm-project/llvm/test/tools/llc/new-pm/machine-function-properties.mir
paperchalice b361b5369e
Reland "[PassManager] Support MachineFunctionProperties (#83668)" (#87141)
Unfortunately GCC 9 rejects code in https://godbolt.org/z/zd9r5GM3e GCC
11 accepts this code.
2024-03-30 20:03:10 +08:00

13 lines
344 B
YAML

# REQUIRES: asserts
# RUN: not --crash llc -mtriple=x86_64-pc-linux-gnu -passes=require-all-machine-function-properties -filetype=null %s 2>&1 | FileCheck %s
# CHECK: MachineFunctionProperties required by RequireAllMachineFunctionPropertiesPass pass are not met by function f.
---
name: f
selected: false
body: |
bb.0:
RET 0
...