[PATCH] [bpf] Test case for symbol information in object file

Yonghong Song via llvm-commits llvm-commits at lists.llvm.org
Sat Sep 22 10:34:23 PDT 2018



On 9/22/18 2:53 AM, Paul Chaignon wrote:
> This patch tests the change introduced in r342556.
> 
> Signed-off-by: Paul Chaignon <paul.chaignon at orange.com>
> ---
>   test/CodeGen/BPF/elf-symbol-information.ll | 8 ++++++++
>   1 file changed, 8 insertions(+)
>   create mode 100644 test/CodeGen/BPF/elf-symbol-information.ll
> 
> diff --git a/test/CodeGen/BPF/elf-symbol-information.ll b/test/CodeGen/BPF/elf-symbol-information.ll
> new file mode 100644
> index 00000000000..37af7eddea5
> --- /dev/null
> +++ b/test/CodeGen/BPF/elf-symbol-information.ll
> @@ -0,0 +1,8 @@
> +; 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
> +}

Thanks, Paul. Applied. https://reviews.llvm.org/rL342807


More information about the llvm-commits mailing list