brintos

brintos / llvm-project-archived public Read only

0
0
Text · 794 B · f0c9ee4 Raw
16 lines · plain
1// RUN:     llvm-mc -triple armv8   -show-encoding -mattr=+sb < %s      | FileCheck %s2// RUN:     llvm-mc -triple armv8   -show-encoding -mattr=+v8.5a    < %s      | FileCheck %s3// RUN: not llvm-mc -triple armv8   -show-encoding -mattr=-sb < %s 2>&1 | FileCheck %s --check-prefix=NOSB4// RUN:     llvm-mc -triple thumbv8 -show-encoding -mattr=+sb < %s      | FileCheck %s --check-prefix=THUMB5// RUN:     llvm-mc -triple thumbv8 -show-encoding -mattr=+v8.5a    < %s      | FileCheck %s --check-prefix=THUMB6// RUN: not llvm-mc -triple thumbv8 -show-encoding -mattr=-sb < %s 2>&1 | FileCheck %s --check-prefix=NOSB7 8// Flag manipulation9sb10 11// CHECK: sb    @ encoding: [0x70,0xf0,0x7f,0xf5]12// THUMB: sb    @ encoding: [0xbf,0xf3,0x70,0x8f]13 14// NOSB: instruction requires: sb15// NOSB-NEXT: sb16