1; RUN: llvm-as %s -o %t.o 2; RUN: wasm-ld %t.o -o %t2 --lto-debug-pass-manager \ 3; RUN: 2>&1 | FileCheck -check-prefix=DEFAULT-NPM %s 4; RUN: wasm-ld %t.o -o %t2 --lto-debug-pass-manager \ 5; RUN: -disable-verify 2>&1 | FileCheck -check-prefix=DISABLE-NPM %s 6 7target datalayout = "e-m:e-p:32:32-p10:8:8-p20:8:8-i64:64-n32:64-S128-ni:1:10:20" 8target triple = "wasm32-unknown-unknown" 9 10define void @_start() { 11 ret void 12} 13 14; -disable-verify should disable the verification of bitcode. 15; DEFAULT-NPM: Running pass: VerifierPass 16; DEFAULT-NPM: Running pass: VerifierPass 17; DEFAULT-NPM-NOT: Running pass: VerifierPass 18; DISABLE-NPM-NOT: Running pass: VerifierPass 19