brintos

brintos / llvm-project-archived public Read only

0
0
Text · 789 B · 1b04166 Raw
22 lines · plain
1; REQUIRES: x862 3;; Make sure that common symbols are properly internalized.4;; In this file, @a does not interpose any symbol in a DSO,5;; so LTO should be able to internalize it.6 7; RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux /dev/null -o %t.so.o8; RUN: ld.lld -shared -o %t.so %t.so.o9 10; RUN: llvm-as %s -o %t.o11; RUN: ld.lld -o %t.exe -save-temps %t.o %t.so12; RUN: llvm-dis < %t.exe.0.2.internalize.bc | FileCheck %s13 14; RUN: ld.lld -pie -o %t.exe -save-temps %t.o15; RUN: llvm-dis < %t.exe.0.2.internalize.bc | FileCheck %s16 17target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"18target triple = "x86_64-unknown-linux-gnu"19 20@a = common dso_local local_unnamed_addr global i32 0, align 421; CHECK-DAG: @a = internal global i32 0, align 422