2018-04-10 01:56:07 +08:00
|
|
|
; REQUIRES: x86
|
|
|
|
; RUN: opt -module-summary %s -o %t.o
|
|
|
|
|
|
|
|
; Test new-pass-manager and debug-pass-manager option
|
|
|
|
; RUN: ld.lld --plugin-opt=new-pass-manager --plugin-opt=debug-pass-manager -o %t2.o %t.o 2>&1 | FileCheck %s
|
|
|
|
; RUN: ld.lld --plugin-opt=new-pass-manager --lto-debug-pass-manager -o %t2.o %t.o 2>&1 | FileCheck %s
|
|
|
|
; RUN: ld.lld --lto-new-pass-manager --plugin-opt=debug-pass-manager -o %t2.o %t.o 2>&1 | FileCheck %s
|
|
|
|
; RUN: ld.lld --lto-new-pass-manager --lto-debug-pass-manager -o %t2.o %t.o 2>&1 | FileCheck %s
|
|
|
|
|
|
|
|
; CHECK: Starting llvm::Module pass manager run
|
|
|
|
; CHECK: Finished llvm::Module pass manager run
|
|
|
|
|
2019-09-11 07:15:38 +08:00
|
|
|
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
|
2018-04-10 01:56:07 +08:00
|
|
|
target triple = "x86_64-unknown-linux-gnu"
|