mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 22:04:55 +00:00
960ce2aafa
This is a bug that was caused due to storing the feature bitset in a 32-bit variable when it is a 64-bit mask, discarding the top half of the feature set. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@228151 91177308-0d34-0410-b5e6-96231b3b80d8
18 lines
425 B
ArmAsm
18 lines
425 B
ArmAsm
// RUN: not llvm-mc -o - -triple arm-gnueabi-freebsd11.0 < %s > %t 2> %t2
|
|
// RUN: FileCheck %s < %t
|
|
// RUN: FileCheck %s --check-prefix=CHECK-ERROR < %t2
|
|
|
|
// CHECK: .cpu cortex-a8
|
|
.cpu cortex-a8
|
|
// CHECK: dsb sy
|
|
dsb
|
|
.cpu arm9
|
|
// CHECK-ERROR: error: instruction requires: data-barriers
|
|
dsb
|
|
// CHECK-ERROR: error: Unknown CPU name
|
|
.cpu foobar
|
|
// CHECK: .cpu cortex-m3
|
|
.cpu cortex-m3
|
|
// CHECK: sub sp, #16
|
|
sub sp,#16
|