diff options
| author | Peter Collingbourne <peter@pcc.me.uk> | 2017-03-02 02:24:31 +0000 |
|---|---|---|
| committer | Peter Collingbourne <peter@pcc.me.uk> | 2017-03-02 02:24:31 +0000 |
| commit | 1fd02112df38f74111d523f11804eee5796e8f4e (patch) | |
| tree | 6876e207fe04958f783669993557a30eeb91b7fc | |
| parent | e2878b2f9747f5e5567dc116e8c2d2a5b1b3a672 (diff) | |
| download | bcm5719-llvm-1fd02112df38f74111d523f11804eee5796e8f4e.tar.gz bcm5719-llvm-1fd02112df38f74111d523f11804eee5796e8f4e.zip | |
Address a few nits pointed out by Sean.
llvm-svn: 296728
| -rw-r--r-- | lld/test/ELF/lto/Inputs/cache.ll | 2 | ||||
| -rw-r--r-- | lld/test/ELF/lto/cache.ll | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lld/test/ELF/lto/Inputs/cache.ll b/lld/test/ELF/lto/Inputs/cache.ll index 4abbb457137..09289029917 100644 --- a/lld/test/ELF/lto/Inputs/cache.ll +++ b/lld/test/ELF/lto/Inputs/cache.ll @@ -1,7 +1,7 @@ target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-unknown-linux-gnu" -define i32 @main() { +define i32 @_start() { entry: call void (...) @globalfunc() ret i32 0 diff --git a/lld/test/ELF/lto/cache.ll b/lld/test/ELF/lto/cache.ll index 2697461d8cc..53d4cbb9e32 100644 --- a/lld/test/ELF/lto/cache.ll +++ b/lld/test/ELF/lto/cache.ll @@ -4,7 +4,7 @@ ; RUN: opt -module-hash -module-summary %p/Inputs/cache.ll -o %t2.o ; RUN: rm -Rf %t.cache -; RUN: ld.lld --thinlto-cache-dir=%t.cache -o %t3.o %t2.o %t.o +; RUN: ld.lld --thinlto-cache-dir=%t.cache -o %t3 %t2.o %t.o ; RUN: ls %t.cache | count 2 |

