Use Align for TFL::TransientStackAlignment
[llvm-core.git] / test / CodeGen / RISCV / interrupt-attr-ret-error.ll
blob58827a860608285259d69acb19bc00b1dbd09ec8
1 ; RUN: not llc -mtriple riscv32-unknown-elf -o - %s \
2 ; RUN: 2>&1 | FileCheck %s
3 ; RUN: not llc -mtriple riscv64-unknown-elf -o - %s \
4 ; RUN: 2>&1 | FileCheck %s
6 ; CHECK: LLVM ERROR: Functions with the interrupt attribute must have void return type!
7 define i32 @isr1_user() #0 {
8   ret i32 0
12 attributes #0 = { "interrupt"="user" }