llvm/test/CodeGen/Mips/interrupt-attr-64-error.ll
Vasileios Kalintiris 2df12188c5 [mips] Check for the correct error message in tests for interrupt attributes.
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
2015-10-26 14:24:30 +00:00

10 lines
296 B
LLVM

; RUN: not llc -mcpu=mips64r6 -march=mipsel -relocation-model=static < %s 2>%t
; RUN: FileCheck %s < %t
; CHECK: LLVM ERROR: "interrupt" attribute is only supported for the O32 ABI on MIPS32R2+ at the present time.
define i32 @isr_sw0() #0 {
ret i32 0
}
attributes #0 = { "interrupt"="sw0" }