mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-13 23:18:51 +00:00
2df12188c5
Instead of XFAIL-ing the tests with the wrong usage of the "interrupt" attribute, we should check that we emit the correct error messages to the user. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@251295 91177308-0d34-0410-b5e6-96231b3b80d8
10 lines
282 B
LLVM
10 lines
282 B
LLVM
; RUN: not llc -mcpu=mips32r2 -march=mipsel -relocation-model=static < %s 2> %t
|
|
; RUN: FileCheck %s < %t
|
|
|
|
; CHECK: LLVM ERROR: Functions with the interrupt attribute cannot have arguments!
|
|
define i32 @isr_sw0(i8 signext %n) #0 {
|
|
ret i32 0
|
|
}
|
|
|
|
attributes #0 = { "interrupt"="sw0" }
|