mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 20:29:48 +00:00
d57120551f
Before this patch we had @a = weak global ... but @b = alias weak ... The patch changes aliases to look more like global variables. Looking at some really old code suggests that the reason was that the old bison based parser had a reduction for alias linkages and another one for global variable linkages. Putting the alias first avoided the reduce/reduce conflict. The days of the old .ll parser are long gone. The new one parses just "linkage" and a later check is responsible for deciding if a linkage is valid in a given context. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@214355 91177308-0d34-0410-b5e6-96231b3b80d8
26 lines
821 B
LLVM
26 lines
821 B
LLVM
; RUN: opt < %s -internalize -S | FileCheck %s
|
|
; Internalized symbols should have default visibility.
|
|
|
|
; CHECK: @global = global i32 0
|
|
@global = global i32 0
|
|
@llvm.used = appending global [1 x i32*] [i32* @global]
|
|
|
|
; CHECK: @hidden.variable = internal global i32 0
|
|
@hidden.variable = hidden global i32 0
|
|
; CHECK: @protected.variable = internal global i32 0
|
|
@protected.variable = protected global i32 0
|
|
|
|
; CHECK: @hidden.alias = internal alias i32* @global
|
|
@hidden.alias = hidden alias i32* @global
|
|
; CHECK: @protected.alias = internal alias i32* @global
|
|
@protected.alias = protected alias i32* @global
|
|
|
|
; CHECK: define internal void @hidden.function() {
|
|
define hidden void @hidden.function() {
|
|
ret void
|
|
}
|
|
; CHECK: define internal void @protected.function() {
|
|
define protected void @protected.function() {
|
|
ret void
|
|
}
|