Home | History | Annotate | Download | only in X86
      1 ; RUN: opt -module-summary %s -o %t.bc
      2 ; RUN: llvm-lto -thinlto-action=thinlink -o %t2.bc %t.bc
      3 
      4 ; RUN: llvm-lto -thinlto-action=promote %t.bc -thinlto-index=%t2.bc -exported-symbol=foo -o - | llvm-lto -thinlto-action=internalize -thinlto-module-id=%t.bc - -thinlto-index=%t2.bc -exported-symbol=foo -o - | llvm-dis -o - | FileCheck %s
      5 
      6 ; CHECK: define weak_odr void @foo()
      7 define linkonce_odr void @foo() {
      8   ret void
      9 }
     10