xref: /llvm-project/llvm/test/Transforms/GlobalOpt/alias-used-section.ll (revision d586bd5ca231a6022f439d4c6e43cfeeb53eb1d6)
1; RUN: opt -S -passes=globalopt < %s | FileCheck %s
2
3@_Z17in_custom_section = internal global i8 42, section "CUSTOM"
4@in_custom_section = internal alias i8, ptr @_Z17in_custom_section
5
6; CHECK: @in_custom_section = internal global i8 42, section "CUSTOM"
7
8@llvm.used = appending global [1 x ptr] [ptr @in_custom_section], section "llvm.metadata"
9