Skip to content

Commit 43ac021

Browse files
committed
remove --deduplicate-strings from tests which is the default already
1 parent 37bcd0d commit 43ac021

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

lld/test/MachO/cstring-tailmerge-objc.s

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
; ObjCSelRefsHelper::makeSelRef() still works correctly
66

77
; RUN: llvm-mc -filetype=obj -triple=arm64-apple-darwin %t/a.s -o %t/a.o
8-
; RUN: %lld -dylib -arch arm64 --deduplicate-strings --tail-merge-strings %t/a.o -o %t/a
8+
; RUN: %lld -dylib -arch arm64 --tail-merge-strings %t/a.o -o %t/a
99
; RUN: llvm-objdump --macho --section="__TEXT,__objc_methname" %t/a | FileCheck %s --implicit-check-not=error
1010

11-
; RUN: %lld -dylib -arch arm64 --deduplicate-strings --no-tail-merge-strings %t/a.o -o %t/nomerge
11+
; RUN: %lld -dylib -arch arm64 --no-tail-merge-strings %t/a.o -o %t/nomerge
1212
; RUN: llvm-objdump --macho --section="__TEXT,__objc_methname" %t/nomerge | FileCheck %s --check-prefixes=CHECK,NOMERGE --implicit-check-not=error
1313

1414
; CHECK: withBar:error:

lld/test/MachO/cstring-tailmerge.s

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@
1010
; RUN: llvm-mc -filetype=obj -triple=arm64-apple-darwin %t/align-2.s -o %t/align-2.o
1111
; RUN: llvm-mc -filetype=obj -triple=arm64-apple-darwin %t/align-4.s -o %t/align-4.o
1212

13-
; RUN: %lld -dylib -arch arm64 --deduplicate-strings --tail-merge-strings %t/first.o %t/align-1.o -o %t/align-1
13+
; RUN: %lld -dylib -arch arm64 --tail-merge-strings %t/first.o %t/align-1.o -o %t/align-1
1414
; RUN: llvm-objdump --macho --section="__TEXT,__cstring" --syms %t/align-1 | FileCheck %s --check-prefixes=CHECK,ALIGN1
1515

16-
; RUN: %lld -dylib -arch arm64 --deduplicate-strings --tail-merge-strings %t/first.o %t/align-2.o -o %t/align-2
16+
; RUN: %lld -dylib -arch arm64 --tail-merge-strings %t/first.o %t/align-2.o -o %t/align-2
1717
; RUN: llvm-objdump --macho --section="__TEXT,__cstring" --syms %t/align-2 | FileCheck %s --check-prefixes=CHECK,ALIGN2
1818

19-
; RUN: %lld -dylib -arch arm64 --deduplicate-strings --tail-merge-strings %t/first.o %t/align-4.o -o %t/align-4
19+
; RUN: %lld -dylib -arch arm64 --tail-merge-strings %t/first.o %t/align-4.o -o %t/align-4
2020
; RUN: llvm-objdump --macho --section="__TEXT,__cstring" --syms %t/align-4 | FileCheck %s --check-prefixes=CHECK,ALIGN4
2121

2222
; CHECK: Contents of (__TEXT,__cstring) section

lld/test/MachO/order-file-cstring-tailmerge.s

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
; RUN: rm -rf %t && split-file %s %t
33

44
; RUN: llvm-mc -filetype=obj -triple=arm64-apple-darwin %t/a.s -o %t/a.o
5-
; RUN: %lld -dylib -arch arm64 --deduplicate-strings --no-tail-merge-strings -order_file %t/orderfile.txt %t/a.o -o - | llvm-nm --numeric-sort --format=just-symbols - | FileCheck %s
6-
; RUN: %lld -dylib -arch arm64 --deduplicate-strings --tail-merge-strings -order_file %t/orderfile.txt %t/a.o -o - | llvm-nm --numeric-sort --format=just-symbols - | FileCheck %s --check-prefix=MERGED
5+
; RUN: %lld -dylib -arch arm64 --no-tail-merge-strings -order_file %t/orderfile.txt %t/a.o -o - | llvm-nm --numeric-sort --format=just-symbols - | FileCheck %s
6+
; RUN: %lld -dylib -arch arm64 --tail-merge-strings -order_file %t/orderfile.txt %t/a.o -o - | llvm-nm --numeric-sort --format=just-symbols - | FileCheck %s --check-prefix=MERGED
77

88
; CHECK: _str2
99
; CHECK: _str1

0 commit comments

Comments
 (0)