The arm64 triple requires AArch64 not ARM target

Failure seen if you configure ARM target but not AArch64, as here:
http://lab.llvm.org:8011/#/builders/59/builds/271
This commit is contained in:
Paul Robinson 2020-11-10 08:18:19 -08:00
parent b2ac9681a7
commit e7256825d5
2 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,6 @@
; Check that we accept functions with '$' in the name.
;
; RUN: llc -mtriple=arm64-unknown-linux < %s | FileCheck --prefi=LINUX %s
; RUN: llc -mtriple=aarch64-unknown-linux < %s | FileCheck --check-prefix=LINUX %s
; RUN: llc -mtriple=aarch64-apple-darwin < %s | FileCheck --check-prefix=DARWIN %s
;

View File

@ -1,6 +1,5 @@
; Check that we accept functions with '$' in the name.
;
; RUN: llc -mtriple=arm64-unknown-linux < %s | FileCheck --prefi=LINUX %s
; RUN: llc -mtriple=armv7-apple-darwin < %s | FileCheck --prefix=DARWIN %s
; RUN: llc -mtriple=armv7-apple-ios < %s | FileCheck --prefix=IOS %s
;