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 31 32 33 34 35 36 37 38 39 | ; REQUIRES: x86 ; RUN: llvm-as %s -o %t.o ; RUN: echo "foo = 1;" > %t.script ; RUN: ld.lld %t.o -o %t2 --script %t.script -save-temps ; RUN: llvm-readobj --symbols %t2.lto.o | FileCheck %s ; CHECK-NOT: bar ; CHECK-NOT: foo ; RUN: llvm-readobj --symbols %t2 | FileCheck %s --check-prefix=VAL ; VAL: Symbol { ; VAL: Name: foo ; VAL-NEXT: Value: 0x1 ; VAL-NEXT: Size: ; VAL-NEXT: Binding: Global ; VAL-NEXT: Type: None ; VAL-NEXT: Other: ; VAL-NEXT: Section: Absolute ; VAL-NEXT: } ; RUN: echo "zed = 1;" > %t2.script ; RUN: ld.lld %t.o -o %t3 --script %t2.script ; RUN: llvm-readobj --symbols %t3 | FileCheck %s --check-prefix=ABS ; ABS: Symbol { ; ABS: Name: zed ; ABS-NEXT: Value: 0x1 ; ABS-NEXT: Size: 0 ; ABS-NEXT: Binding: Global ; ABS-NEXT: Type: None ; ABS-NEXT: Other: 0 ; ABS-NEXT: Section: Absolute ; ABS-NEXT: } target triple = "x86_64-unknown-linux-gnu" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" @foo = global i32 0 @bar = global i32 0 |