[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / tools / gold / X86 / weak.ll
blob340de107b43b89e3460da93e2c7b99f3887a165c
1 ; RUN: llvm-as %s -o %t.o
2 ; RUN: llvm-as %p/Inputs/weak.ll -o %t2.o
4 ; RUN: %gold -plugin %llvmshlibdir/LLVMgold%shlibext \
5 ; RUN:    --plugin-opt=emit-llvm \
6 ; RUN:    -shared %t.o %t2.o -o %t3.o
7 ; RUN: llvm-dis %t3.o -o - | FileCheck %s
9 target triple = "x86_64-unknown-linux-gnu"
10 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
12 @a = weak global i32 42
13 @b = global i32* @a
15 ; Test that @b and @c end up pointing to the same variable.
17 ; CHECK: @b = global i32* @a{{$}}
18 ; CHECK: @a = weak global i32 42
19 ; CHECK: @c = global i32* @a{{$}}