diff options
author | Sriraman Tallam <tmsriram@google.com> | 2018-05-09 00:20:45 +0000 |
---|---|---|
committer | Sriraman Tallam <tmsriram@google.com> | 2018-05-09 00:20:45 +0000 |
commit | 8244c9c48923365d349eb176cf1bcf7075855b39 (patch) | |
tree | faefa31ab11fb671da971e21222fdc0fb097b2dd | |
parent | 47550bb1d63621e9f902fbf6313062a8209989ed (diff) | |
download | llvm-8244c9c48923365d349eb176cf1bcf7075855b39.zip llvm-8244c9c48923365d349eb176cf1bcf7075855b39.tar.gz llvm-8244c9c48923365d349eb176cf1bcf7075855b39.tar.bz2 |
Fix test by adding -triple=x86_64-unknown-linux
llvm-svn: 331828
-rw-r--r-- | lld/test/ELF/text-section-prefix.s | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/test/ELF/text-section-prefix.s b/lld/test/ELF/text-section-prefix.s index 578a504..b9e9a60 100644 --- a/lld/test/ELF/text-section-prefix.s +++ b/lld/test/ELF/text-section-prefix.s @@ -1,4 +1,4 @@ -# RUN: llvm-mc -filetype=obj %s -o %t +# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t # RUN: ld.lld -z keep-text-section-prefix %t -o %t2 # RUN: llvm-readelf -l %t2 | FileCheck %s # RUN: ld.lld %t -o %t3 |