blob: ed910357144348796b766d2200deb1c774d95bac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t.o
# RUN: not ld.lld %t.o -o %t.so -shared 2>&1 | FileCheck %s
# CHECK: undefined symbol: hidden in {{.*}}
.global hidden
.hidden hidden
# CHECK: undefined symbol: internal in {{.*}}
.global internal
.internal internal
# CHECK: undefined symbol: protected in {{.*}}
.global protected
.protected protected
|