Home | History | Annotate | Download | only in Other
      1 ; RUN: echo %s > %t.list
      2 ; RUN: llvm-as @%t.list -o %t.bc
      3 ; RUN: llvm-nm %t.bc 2>&1 | FileCheck %s
      4 
      5 ; CHECK: T foobar
      6 
      7 define void @foobar() {
      8   ret void
      9 }
     10