You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
598 B
16 lines
598 B
; RUN: llvm-as -o %t.bc %s
|
|
; RUN: wasm-ld --lto-new-pass-manager --lto-debug-pass-manager -o /dev/null %t.bc 2>&1 | FileCheck %s
|
|
; RUN: wasm-ld --lto-new-pass-manager --lto-debug-pass-manager --no-lto-new-pass-manager -o /dev/null %t.bc 2>&1 | FileCheck %s --allow-empty --check-prefix=LPM
|
|
|
|
; CHECK: Starting llvm::Module pass manager run
|
|
; CHECK: Finished llvm::Module pass manager run
|
|
; LPM-NOT: Starting llvm::Module pass manager run
|
|
|
|
target datalayout = "e-m:e-p:32:32-i64:64-n32:64-S128"
|
|
target triple = "wasm32-unknown-unknown"
|
|
|
|
define void @_start() local_unnamed_addr {
|
|
entry:
|
|
ret void
|
|
}
|