Also replace aarch64_be-*-eabi with aarch64_be Using "eabi" for aarch64 targets is a common mistake and warned by Clang Driver. We want to avoid it elsewhere as well. Just use the common "aarch64" without other triple components. Reviewed By: MaskRay Differential Revision: https://reviews.llvm.org/D153943
15 lines
441 B
ArmAsm
15 lines
441 B
ArmAsm
// RUN: llvm-mc -filetype=obj -triple aarch64 %s | llvm-objdump -d - | FileCheck %s
|
|
// RUN: llvm-mc -filetype=obj -triple aarch64_be %s | llvm-objdump -d - | FileCheck %s
|
|
|
|
// CHECK: 0: d2800000 mov x0, #0
|
|
// CHECK: 4: d2800000 mov x0, #0
|
|
// CHECK: 8: d503201f nop
|
|
// CHECK: c: d503201f nop
|
|
// CHECK: 10: d2800000 mov x0, #0
|
|
|
|
.text
|
|
mov x0, #0
|
|
mov x0, #0
|
|
.p2align 4
|
|
mov x0, #0
|