mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
279a212ca2
Summary: This does not include support for the immediate variants of these pseudo-instructions. Fixes llvm.org/PR20968. Reviewers: dsanders Reviewed By: dsanders Subscribers: seanbruno, emaste, llvm-commits Differential Revision: http://reviews.llvm.org/D8537 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@239905 91177308-0d34-0410-b5e6-96231b3b80d8
22 lines
1.1 KiB
ArmAsm
22 lines
1.1 KiB
ArmAsm
# RUN: not llvm-mc %s -arch=mips -mcpu=mips32 2>&1 | FileCheck %s
|
|
|
|
# Check for errors when using conditional branch pseudos after .set noat.
|
|
.set noat
|
|
local_label:
|
|
blt $7, $8, local_label
|
|
# CHECK: :[[@LINE-1]]:3: error: pseudo-instruction requires $at, which is not available
|
|
bltu $7, $8, local_label
|
|
# CHECK: :[[@LINE-1]]:3: error: pseudo-instruction requires $at, which is not available
|
|
ble $7, $8, local_label
|
|
# CHECK: :[[@LINE-1]]:3: error: pseudo-instruction requires $at, which is not available
|
|
bleu $7, $8, local_label
|
|
# CHECK: :[[@LINE-1]]:3: error: pseudo-instruction requires $at, which is not available
|
|
bge $7, $8, local_label
|
|
# CHECK: :[[@LINE-1]]:3: error: pseudo-instruction requires $at, which is not available
|
|
bgeu $7, $8, local_label
|
|
# CHECK: :[[@LINE-1]]:3: error: pseudo-instruction requires $at, which is not available
|
|
bgt $7, $8, local_label
|
|
# CHECK: :[[@LINE-1]]:3: error: pseudo-instruction requires $at, which is not available
|
|
bgtu $7, $8, local_label
|
|
# CHECK: :[[@LINE-1]]:3: error: pseudo-instruction requires $at, which is not available
|