2 ; RUN: llvm-as %s -o %t.o
5 ; RUN: echo "foo = 1;" > %t.script
6 ; RUN: ld.lld %t.o -o %t2 --script %t.script -save-temps
7 ;; Combined module is not empty, but it will be empty after optimization.
8 ;; Ensure lld still emits empty combined obj in this case.
9 ; RUN: llvm-nm %t2.lto.o | count 0
11 ; RUN: llvm-readobj --symbols %t2 | FileCheck %s --check-prefix=VAL
14 ; VAL-NEXT: Value: 0x1
16 ; VAL-NEXT: Binding: Global
17 ; VAL-NEXT: Type: None
19 ; VAL-NEXT: Section: Absolute
22 ; RUN: echo "zed = 1;" > %t2.script
23 ; RUN: ld.lld %t.o -o %t3 --script %t2.script
24 ; RUN: llvm-readobj --symbols %t3 | FileCheck %s --check-prefix=ABS
27 ; ABS-NEXT: Value: 0x1
29 ; ABS-NEXT: Binding: Global
30 ; ABS-NEXT: Type: None
32 ; ABS-NEXT: Section: Absolute
35 target triple = "x86_64-unknown-linux-gnu"
36 target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"