From: Paul Robinson Date: Tue, 10 Nov 2020 16:18:19 +0000 (-0800) Subject: The arm64 triple requires AArch64 not ARM target X-Git-Tag: llvmorg-13-init~6546 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e7256825d57305045ae6fe1d44892a15a968314c;p=platform%2Fupstream%2Fllvm.git 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 --- diff --git a/llvm/test/tools/UpdateTestChecks/update_llc_test_checks/Inputs/aarch64_function_name.ll b/llvm/test/tools/UpdateTestChecks/update_llc_test_checks/Inputs/aarch64_function_name.ll index 1ea9d20..f097a65 100644 --- a/llvm/test/tools/UpdateTestChecks/update_llc_test_checks/Inputs/aarch64_function_name.ll +++ b/llvm/test/tools/UpdateTestChecks/update_llc_test_checks/Inputs/aarch64_function_name.ll @@ -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 ; diff --git a/llvm/test/tools/UpdateTestChecks/update_llc_test_checks/Inputs/arm_function_name.ll b/llvm/test/tools/UpdateTestChecks/update_llc_test_checks/Inputs/arm_function_name.ll index 6c0f9e9..43d69bc 100644 --- a/llvm/test/tools/UpdateTestChecks/update_llc_test_checks/Inputs/arm_function_name.ll +++ b/llvm/test/tools/UpdateTestChecks/update_llc_test_checks/Inputs/arm_function_name.ll @@ -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 ;