64ac736ec5
Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
10 lines
302 B
LLVM
10 lines
302 B
LLVM
; RUN: llc -march=mipsel -mcpu=mips64r6 -target-abi n64 < %s | FileCheck %s
|
|
; RUN: not llc -march=mipsel -mcpu=mips64r6 -target-abi n64 -mattr=+dsp < %s 2>&1 | FileCheck --check-prefix=DSP %s
|
|
|
|
; CHECK: foo:
|
|
; DSP: MIPS64r6 is not compatible with the DSP ASE
|
|
|
|
define void @foo() nounwind {
|
|
ret void
|
|
}
|