forked from OSchip/llvm-project
15 lines
617 B
ArmAsm
15 lines
617 B
ArmAsm
# REQUIRES: x86
|
|
# RUN: llvm-mc -filetype=obj -triple=x86_64 %s -o %t
|
|
|
|
# RUN: not ld.lld %t --fix-cortex-a53-843419 -o /dev/null 2>&1 | FileCheck %s --check-prefix=ERR-843419
|
|
# ERR-843419: error: --fix-cortex-a53-843419 is only supported on AArch64 targets
|
|
|
|
# RUN: not ld.lld %t --pcrel-optimize -o /dev/null 2>&1 | FileCheck %s --check-prefix=ERR-PCREL
|
|
# ERR-PCREL: error: --pcrel-optimize is only supported on PowerPC64 targets
|
|
|
|
# RUN: not ld.lld %t --toc-optimize -o /dev/null 2>&1 | FileCheck %s --check-prefix=ERR-TOC
|
|
# ERR-TOC: error: --toc-optimize is only supported on PowerPC64 targets
|
|
|
|
.globl _start
|
|
_start:
|