[lld] 654131f - fix test (#79018)

via llvm-commits llvm-commits at lists.llvm.org
Tue Jan 23 06:08:47 PST 2024


Author: OldWorldOrdr
Date: 2024-01-23T09:08:43-05:00
New Revision: 654131fab22e71f156d8fa9d37389622f1652438

URL: https://github.com/llvm/llvm-project/commit/654131fab22e71f156d8fa9d37389622f1652438
DIFF: https://github.com/llvm/llvm-project/commit/654131fab22e71f156d8fa9d37389622f1652438.diff

LOG: fix test (#79018)

Mistake with #78628 that got caught after being merged

Added: 
    

Modified: 
    lld/test/MachO/link-csu-object.s

Removed: 
    


################################################################################
diff  --git a/lld/test/MachO/link-csu-object.s b/lld/test/MachO/link-csu-object.s
index e6f5ff7e52e325..a36e50a8901bd0 100644
--- a/lld/test/MachO/link-csu-object.s
+++ b/lld/test/MachO/link-csu-object.s
@@ -2,7 +2,7 @@
 # RUN: mkdir -p %t
 # RUN: llvm-mc -filetype=obj -triple=x86_64-apple-darwin %p/Inputs/libhello.s -o %t/hello.o
 # RUN: llvm-mc -filetype=obj -triple=x86_64-apple-darwin %s -o %t/main.o
-# RUN: %lld -L %t %t/main.o %t/hello.o -o %t/a.out
+# RUN: %lld -L %t %t/main.o -lhello.o -o %t/a.out
 # RUN: llvm-nm %t/a.out | FileCheck %s
 
 # CHECK: _main


        


More information about the llvm-commits mailing list