repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[flang] Support OPEN(..., FORM="BINARY") (#124657)
[llvm-project.git]
/
lld
/
test
/
wasm
/
undef-shared.s
blob
4c270880ef531d666e6fd6c731ea944e6b8a03ff
1
# RUN: llvm-mc -filetype=obj -triple=wasm32-unknown-unknown %s -o %t.o
2
# RUN: not wasm-ld --experimental-pic %t.o -o /dev/null -shared 2>&1 | FileCheck %s
3
4
# CHECK: error: {{.*}}: undefined symbol: hidden
5
.global hidden
6
.hidden hidden
7
8
.global foo
9
.section .data,
""
,@
10
foo
:
11
.int32 hidden
12
.size foo,4