mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
2dbac841f9
This reverts commit bb51d243308dbcc9a8c73180ae7b9e47b98e68fb.
10 lines
270 B
LLVM
10 lines
270 B
LLVM
; RUN: llc -march=mipsel -mcpu=mips32r6 < %s | FileCheck %s
|
|
; RUN: not llc -march=mipsel -mcpu=mips32r6 -mattr=+dsp < %s 2>&1 | FileCheck --check-prefix=DSP %s
|
|
|
|
; CHECK: foo:
|
|
; DSP: MIPS32r6 is not compatible with the DSP ASE
|
|
|
|
define void @foo() nounwind {
|
|
ret void
|
|
}
|