mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
bbdf1e0432
This short-circuited our error reporting for incorrectly specified target triples (you'd get AArch64 code instead). Should fix PR20567. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@215191 91177308-0d34-0410-b5e6-96231b3b80d8
8 lines
355 B
LLVM
8 lines
355 B
LLVM
; RUN: not llc -mtriple=x86-64 2>&1 | FileCheck %s
|
|
|
|
; To support "arm64" as a -march option, we need to register a second AArch64
|
|
; target, but we have to be careful how we do that so that it doesn't become the
|
|
; target of last resort when the specified triple is completely wrong.
|
|
|
|
; CHECK: unable to get target for 'x86-64', see --version and --triple.
|