reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
; Test plugin options new-pass-manager and debug-pass-manager
; RUN: opt -module-summary %s -o %t.o

; RUN: %gold -m elf_x86_64 -plugin %llvmshlibdir/LLVMgold%shlibext \
; RUN:     --plugin-opt=thinlto \
; RUN:     --plugin-opt=new-pass-manager \
; RUN:     --plugin-opt=debug-pass-manager \
; RUN:     --plugin-opt=cache-dir=%t.cache \
; RUN:     -o %t2.o %t.o 2>&1 | FileCheck %s

; CHECK: Starting llvm::Module pass manager run

target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-unknown-linux-gnu"

define void @globalfunc() #0 {
entry:
  ret void
}