[mlir][LLVM] `LLVMTypeConverter`: Tighten materialization checks (#116532)
[llvm-project.git] / llvm / test / CodeGen / RISCV / interrupt-attr-args-error.ll
blobf15f565c39fdddc1b837880d5c50b89a1af09d60
1 ; RUN: not --crash llc -mtriple riscv32-unknown-elf -o - %s \
2 ; RUN: 2>&1 | FileCheck %s
3 ; RUN: not --crash llc -mtriple riscv64-unknown-elf -o - %s \
4 ; RUN: 2>&1 | FileCheck %s
6 ; CHECK: LLVM ERROR: Functions with the interrupt attribute cannot have arguments!
7 define i32 @isr_user(i8 %n) #0 {
8   ret i32 0
11 attributes #0 = { "interrupt"="supervisor" }