reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | ; REQUIRES: x86 ; RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux -o %t.o %p/Inputs/dynsym.s ; RUN: ld.lld %t.o -o %t.so -shared ; RUN: llvm-as %s -o %t2.o ; RUN: ld.lld %t2.o %t.so -o %t ; RUN: llvm-readobj --dyn-syms %t | FileCheck %s ; Check that we don't crash when gc'ing sections and printing the result. ; RUN: ld.lld %t2.o %t.so --gc-sections --print-gc-sections \ ; RUN: -o %t ; RUN: llvm-readobj --dyn-syms %t | FileCheck %s target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-unknown-linux-gnu" define void @_start() { call void @foo() ret void } ; CHECK: Name: foo ; CHECK-NEXT: Value: ; CHECK-NEXT: Size: ; CHECK-NEXT: Binding: ; CHECK-NEXT: Type: ; CHECK-NEXT: Other: ; CHECK-NEXT: Section: .text define void @foo() { ret void } |