mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
6cc2e1a132
Summary: These directives are used to toggle whether the assembler accepts MSA-specific instructions or not. Patch by Matheus Almeida and Toma Tabacu. Reviewers: dsanders Reviewed By: dsanders Differential Revision: http://reviews.llvm.org/D4783 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@215099 91177308-0d34-0410-b5e6-96231b3b80d8
12 lines
369 B
ArmAsm
12 lines
369 B
ArmAsm
# RUN: not llvm-mc %s -arch=mips -mcpu=mips32r2 2>%t1
|
|
# RUN: FileCheck %s < %t1
|
|
|
|
.set nomsa
|
|
addvi.b $w14, $w12, 14 # CHECK: error: instruction requires a CPU feature not currently enabled
|
|
|
|
.set msa
|
|
addvi.h $w26, $w17, 4
|
|
|
|
.set nomsa
|
|
addvi.w $w19, $w13, 11 # CHECK: error: instruction requires a CPU feature not currently enabled
|