1; REQUIRES: x86 2; RUN: llvm-as %s -o %t1.o 3; RUN: llvm-as %S/Inputs/common3.ll -o %t2.o 4; RUN: ld.lld %t1.o %t2.o -o %t -shared -save-temps 5; RUN: llvm-dis < %t.0.2.internalize.bc | FileCheck %s 6 7target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" 8target triple = "x86_64-unknown-linux-gnu" 9@a = common hidden global i32 0, align 8 10define i32 @f() { 11 %t = load i32, ptr @a, align 4 12 ret i32 %t 13} 14 15; CHECK: @a = internal global i64 0, align 8 16