You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
302 B
10 lines
302 B
4 months ago
|
; 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
|
||
|
}
|