diff options
author | Mehdi Amini <mehdi.amini@apple.com> | 2016-08-24 05:50:07 +0000 |
---|---|---|
committer | Mehdi Amini <mehdi.amini@apple.com> | 2016-08-24 05:50:07 +0000 |
commit | dfa0c53885d910853583ad38fbfb98fe61979f18 (patch) | |
tree | 2b19ec1c2c7542ffd69f884a4f1b77ffbdb9892d | |
parent | e1cf274bff0eadb8c9da55ec6a9f99efe47025d4 (diff) | |
download | bcm5719-llvm-dfa0c53885d910853583ad38fbfb98fe61979f18.tar.gz bcm5719-llvm-dfa0c53885d910853583ad38fbfb98fe61979f18.zip |
Tentatively fix gold-plugin test: ThinLTO objects start at offset 0 now.
Annoyingly, incremental builds don't detect these kind of issue.
llvm-svn: 279612
-rw-r--r-- | llvm/test/tools/gold/X86/thinlto.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/tools/gold/X86/thinlto.ll b/llvm/test/tools/gold/X86/thinlto.ll index 9418b5f5af7..adc52bd0e10 100644 --- a/llvm/test/tools/gold/X86/thinlto.ll +++ b/llvm/test/tools/gold/X86/thinlto.ll @@ -60,8 +60,8 @@ ; RUN: --plugin-opt=jobs=2 \ ; RUN: --plugin-opt=obj-path=%t5.o \ ; RUN: -shared %t.o %t2.o -o %t4 +; RUN: llvm-nm %t5.o0 | FileCheck %s --check-prefix=NM2 ; RUN: llvm-nm %t5.o1 | FileCheck %s --check-prefix=NM2 -; RUN: llvm-nm %t5.o2 | FileCheck %s --check-prefix=NM2 ; NM: T f ; NM2: T {{f|g}} |