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.
9 lines
250 B
9 lines
250 B
4 months ago
|
; RUN: llc -march=bpfel -filetype=obj -o - %s | llvm-readelf --symbols - | FileCheck %s
|
||
|
|
||
|
; CHECK: 0 FILE LOCAL DEFAULT ABS elf-symbol-information.ll
|
||
|
; CHECK: 8 FUNC GLOBAL DEFAULT 2 test_func
|
||
|
define void @test_func() {
|
||
|
entry:
|
||
|
ret void
|
||
|
}
|