1# RUN: llvm-as %S/Inputs/f.ll -o %t.f.bc 2# RUN: llvm-as %S/Inputs/g.ll -o %t.g.bc 3# RUN: llvm-ar cr %t.fg.a %t.f.bc %t.g.bc 4# RUN: llvm-ar cr %t.empty.lib 5# RUN: llvm-link %S/Inputs/h.ll %t.fg.a %t.empty.lib -o %t.linked.bc 6 7# RUN: llvm-nm %t.linked.bc | FileCheck %s 8 9# RUN: rm -f %t.f.bc 10# RUN: rm -f %t.g.bc 11# RUN: rm -f %t.fg.a 12# RUN: rm -f %t.empty.a 13# RUN: rm -f %t.linked.bc 14 15# CHECK: -------- T f 16# CHECK: -------- T g 17# CHECK: -------- T h 18