mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-21 00:32:23 +00:00
10 lines
270 B
LLVM
10 lines
270 B
LLVM
|
; RUN: llc -march=mipsel -mcpu=mips64r6 < %s | FileCheck %s
|
||
|
; RUN: not llc -march=mipsel -mcpu=mips64r6 -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
|
||
|
}
|