[ELF] Reorder SectionBase/InputSectionBase members
[llvm-project.git] / lld / test / ELF / lto / verify-invalid.ll
blobd97d0e1b78b8c06f847f2c6fe3862a85567342e9
1 ; REQUIRES: x86
2 ; RUN: llvm-as %s -o %t.o
3 ; RUN: ld.lld %t.o -o %t2 --lto-debug-pass-manager \
4 ; RUN:   2>&1 | FileCheck -check-prefix=DEFAULT-NPM %s
5 ; RUN: ld.lld %t.o -o %t2 --lto-debug-pass-manager \
6 ; RUN:   -disable-verify 2>&1 | FileCheck -check-prefix=DISABLE-NPM %s
7 ; RUN: ld.lld %t.o -o %t2 --lto-debug-pass-manager \
8 ; RUN:   --plugin-opt=disable-verify 2>&1 | FileCheck -check-prefix=DISABLE-NPM %s
10 target triple = "x86_64-unknown-linux-gnu"
11 target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
13 define void @_start() {
14   ret void
17 ; -disable-verify should disable the verification of bitcode.
18 ; DEFAULT-NPM: Running pass: VerifierPass
19 ; DEFAULT-NPM: Running pass: VerifierPass
20 ; DEFAULT-NPM-NOT: Running pass: VerifierPass
21 ; DISABLE-NPM-NOT: Running pass: VerifierPass