[sanitizer] Improve FreeBSD ASLR detection
[llvm-project.git] / llvm / test / LTO / X86 / parallel.ll
blob34235ec0202b857ce06e6c465c0ad276fbaeb7be
1 ; RUN: llvm-as -o %t.bc %s
2 ; RUN: llvm-lto -exported-symbol=foo -exported-symbol=bar -j2 -o %t.o %t.bc
3 ; RUN: llvm-nm %t.o.0 | FileCheck --check-prefix=CHECK0 %s
4 ; RUN: llvm-nm %t.o.1 | FileCheck --check-prefix=CHECK1 %s
6 ; FIXME: Investigate test failures on these architectures.
7 ; UNSUPPORTED: mips, mipsel, aarch64, powerpc64
9 target triple = "x86_64-unknown-linux-gnu"
11 ; CHECK0-NOT: bar
12 ; CHECK0: T foo
13 ; CHECK0-NOT: bar
14 define void @foo() mustprogress {
15   call void @bar()
16   ret void
19 ; CHECK1-NOT: foo
20 ; CHECK1: T bar
21 ; CHECK1-NOT: foo
22 define void @bar() mustprogress {
23   call void @foo()
24   ret void