You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
343 B
17 lines
343 B
; RUN: llvm-as -o %T/1.bc %s
|
|
; RUN: llvm-as -o %T/2.bc %S/Inputs/list-symbols.ll
|
|
; RUN: llvm-lto -list-symbols-only %T/1.bc %T/2.bc | FileCheck %s
|
|
; REQUIRES: default_triple
|
|
|
|
; CHECK-LABEL: 1.bc:
|
|
; CHECK-DAG: foo
|
|
; CHECK-DAG: glob
|
|
; CHECK-LABEL: 2.bc:
|
|
; CHECK-DAG: glob
|
|
; CHECK-DAG: bar
|
|
|
|
@glob = global i32 0
|
|
define void @foo() {
|
|
ret void
|
|
}
|