[lld] 691c3d5 - Update REQUIRES line in 4 tests that attempt to use arm64 which should be aarch64 not arm.

Douglas Yung via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 24 02:26:32 PST 2021


Author: Douglas Yung
Date: 2021-02-24T02:26:19-08:00
New Revision: 691c3d59484f6d7f03c68db3b9c5b00c30fe8420

URL: https://github.com/llvm/llvm-project/commit/691c3d59484f6d7f03c68db3b9c5b00c30fe8420
DIFF: https://github.com/llvm/llvm-project/commit/691c3d59484f6d7f03c68db3b9c5b00c30fe8420.diff

LOG: Update REQUIRES line in 4 tests that attempt to use arm64 which should be aarch64 not arm.

Added: 
    

Modified: 
    lld/test/MachO/arm64-reloc-got-load.s
    lld/test/MachO/arm64-reloc-pointer-to-got.s
    lld/test/MachO/arm64-reloc-tlv-load.s
    lld/test/MachO/header.s

Removed: 
    


################################################################################
diff  --git a/lld/test/MachO/arm64-reloc-got-load.s b/lld/test/MachO/arm64-reloc-got-load.s
index fb5256545456..d627c8a04096 100644
--- a/lld/test/MachO/arm64-reloc-got-load.s
+++ b/lld/test/MachO/arm64-reloc-got-load.s
@@ -1,4 +1,4 @@
-# REQUIRES: arm
+# REQUIRES: aarch64
 
 # RUN: rm -rf %t; split-file %s %t
 # RUN: llvm-mc -filetype=obj -triple=arm64-apple-darwin %t/main.s -o %t/main.o

diff  --git a/lld/test/MachO/arm64-reloc-pointer-to-got.s b/lld/test/MachO/arm64-reloc-pointer-to-got.s
index 5bf98a29b7a7..65ad802855af 100644
--- a/lld/test/MachO/arm64-reloc-pointer-to-got.s
+++ b/lld/test/MachO/arm64-reloc-pointer-to-got.s
@@ -1,4 +1,4 @@
-# REQUIRES: arm
+# REQUIRES: aarch64
 
 # RUN: llvm-mc -filetype=obj -triple=arm64-apple-darwin %s -o %t.o
 # RUN: %lld -lSystem -arch arm64 -o %t %t.o

diff  --git a/lld/test/MachO/arm64-reloc-tlv-load.s b/lld/test/MachO/arm64-reloc-tlv-load.s
index 1b911a687fea..3cfd311fa606 100644
--- a/lld/test/MachO/arm64-reloc-tlv-load.s
+++ b/lld/test/MachO/arm64-reloc-tlv-load.s
@@ -1,4 +1,4 @@
-# REQUIRES: arm
+# REQUIRES: aarch64
 
 # RUN: rm -rf %t; split-file %s %t
 # RUN: llvm-mc -filetype=obj -triple=arm64-apple-darwin %t/main.s -o %t/main.o

diff  --git a/lld/test/MachO/header.s b/lld/test/MachO/header.s
index c96682fefba9..405fabcffa19 100644
--- a/lld/test/MachO/header.s
+++ b/lld/test/MachO/header.s
@@ -1,4 +1,4 @@
-# REQUIRES: x86, arm
+# REQUIRES: x86, aarch64
 # RUN: rm -rf %t && mkdir -p %t
 # RUN: llvm-mc -filetype=obj -triple=x86_64-apple-darwin %s -o %t/x86_64-test.o
 # RUN: llvm-mc -filetype=obj -triple=arm64-apple-darwin %s -o %t/arm64-test.o


        


More information about the llvm-commits mailing list