[lld] r358810 - [LLD][ELF] - Fix mistype. NFC.
George Rimar via llvm-commits
llvm-commits at lists.llvm.org
Sat Apr 20 03:50:27 PDT 2019
Author: grimar
Date: Sat Apr 20 03:50:27 2019
New Revision: 358810
URL: http://llvm.org/viewvc/llvm-project?rev=358810&view=rev
Log:
[LLD][ELF] - Fix mistype. NFC.
Change the tripple name from
aarch64-linux-gnux to -triple=aarch64-linux-gnu
Modified:
lld/trunk/test/ELF/linkerscript/addr-zero.test
Modified: lld/trunk/test/ELF/linkerscript/addr-zero.test
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/test/ELF/linkerscript/addr-zero.test?rev=358810&r1=358809&r2=358810&view=diff
==============================================================================
--- lld/trunk/test/ELF/linkerscript/addr-zero.test (original)
+++ lld/trunk/test/ELF/linkerscript/addr-zero.test Sat Apr 20 03:50:27 2019
@@ -18,7 +18,7 @@
## Because of a bug we had a different behavior (different symbol 'foo' value)
## on a platforms that might use thunks, like AArch64. Check that issue is fixed.
-# RUN: llvm-mc -filetype=obj -triple=aarch64-linux-gnux /dev/null -o %t.o
+# RUN: llvm-mc -filetype=obj -triple=aarch64-linux-gnu /dev/null -o %t.o
# RUN: ld.lld -o %t.so --script %s %t.o -shared
# RUN: llvm-readobj --symbols %t.so | FileCheck %s
More information about the llvm-commits
mailing list