diff options
-rw-r--r-- | lld/test/ELF/lto/thinlto.ll | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lld/test/ELF/lto/thinlto.ll b/lld/test/ELF/lto/thinlto.ll index 2ceb3bc9e02..955e85b73c1 100644 --- a/lld/test/ELF/lto/thinlto.ll +++ b/lld/test/ELF/lto/thinlto.ll @@ -1,6 +1,6 @@ ; Basic ThinLTO tests. -; RUN: llvm-as %s -o %t.o -; RUN: llvm-as %p/Inputs/thinlto.ll -o %t2.o +; RUN: opt -module-summary %s -o %t.o +; RUN: opt -module-summary %p/Inputs/thinlto.ll -o %t2.o ; First force single-threaded mode ; RUN: ld.lld -save-temps --thinlto-jobs=1 -shared %t.o %t2.o -o %t @@ -14,8 +14,8 @@ ; RUN: llvm-nm %t20.lto.o | FileCheck %s --check-prefix=NM1 ; RUN: llvm-nm %t21.lto.o | FileCheck %s --check-prefix=NM2 -; NM1: T g -; NM2: T f +; NM1: T f +; NM2: T g target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-unknown-linux-gnu" |