[test] Pre-commit llvm.experimental.memset.pattern tests prior to MemoryLocation...
[llvm-project.git] / llvm / test / tools / gold / X86 / multiple-sections.ll
blob575fb81fcd6f44eb6ec0e983f5ea57ceec750e59
1 ; RUN: split-file %s %t
2 ; RUN: llvm-as %t/a.ll -o %t.o
3 ; RUN: %gold -plugin %llvmshlibdir/LLVMgold%shlibext \
4 ; RUN:     -m elf_x86_64 -o %t.exe %t.o \
5 ; RUN:     --section-ordering-file=%t/order
6 ; RUN: llvm-readelf -s %t.exe | FileCheck %s
8 ; Check that the order of the sections is tin -> _start -> pat.
10 ; CHECK:      00000000004000d0     1 FUNC    LOCAL  DEFAULT    1 pat
11 ; CHECK:      00000000004000b0     1 FUNC    LOCAL  DEFAULT    1 tin
12 ; CHECK:      00000000004000c0    15 FUNC    GLOBAL DEFAULT    1 _start
14 ;--- order
15 .text.tin
16 .text._start
17 .text.pat
19 ;--- a.ll
20 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
21 target triple = "x86_64-unknown-linux-gnu"
23 define void @pat() #0 {
24   ret void
27 define void @tin() #0 {
28   ret void
31 define i32 @_start() {
32   call void @pat()
33   call void @tin()
34   ret i32 0
37 attributes #0 = { noinline optnone }