1// REQUIRES: x86
2// RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t
3// RUN: not ld.lld %t -fix-cortex-a53-843419 -o /dev/null 2>&1 | FileCheck %s
4
5// CHECK: --fix-cortex-a53-843419 is only supported on AArch64 targets
6.globl entry
7.text
8 .quad 0
9entry:
10 ret
11