[LLD][ELF] - Fix mistype. NFC.

Change the tripple name from
aarch64-linux-gnux to -triple=aarch64-linux-gnu

llvm-svn: 358810
This commit is contained in:
George Rimar 2019-04-20 10:50:27 +00:00
parent b48e41be96
commit 5f7665969a
1 changed files with 1 additions and 1 deletions

View File

@ -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