mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
6fab073b1a
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. llvm-svn: 251295
10 lines
278 B
LLVM
10 lines
278 B
LLVM
; RUN: not llc -mcpu=mips32 -march=mipsel -relocation-model=static < %s 2>%t
|
|
; RUN: FileCheck %s < %t
|
|
|
|
; CHECK: LLVM ERROR: "interrupt" attribute is not supported on pre-MIPS32R2 or MIPS16 targets.
|
|
define i32 @isr_sw0() #0 {
|
|
ret i32 0
|
|
}
|
|
|
|
attributes #0 = { "interrupt"="sw0" }
|