2018-01-17 02:53:09 +08:00
|
|
|
# REQUIRES: x86
|
|
|
|
|
|
|
|
# RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t.o
|
|
|
|
# RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %p/Inputs/hidden-shared-err.s -o %t2.o
|
2018-01-17 03:02:46 +08:00
|
|
|
# RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %p/Inputs/hidden-shared-err2.s -o %t3.o
|
|
|
|
|
2018-01-17 02:53:09 +08:00
|
|
|
# RUN: ld.lld -shared -o %t2.so %t2.o
|
2020-02-13 13:48:45 +08:00
|
|
|
# RUN: not ld.lld %t.o %t2.so -o /dev/null 2>&1 | FileCheck %s
|
|
|
|
# RUN: not ld.lld %t2.so %t.o -o /dev/null 2>&1 | FileCheck %s
|
2018-01-17 02:53:09 +08:00
|
|
|
|
2020-02-13 13:48:45 +08:00
|
|
|
# RUN: not ld.lld %t.o %t3.o %t2.so -o /dev/null 2>&1 | FileCheck %s
|
|
|
|
# RUN: not ld.lld %t3.o %t.o %t2.so -o /dev/null 2>&1 | FileCheck %s
|
2018-01-17 03:02:46 +08:00
|
|
|
|
2019-03-12 19:10:29 +08:00
|
|
|
# CHECK: undefined hidden symbol: foo
|
2018-01-17 02:53:09 +08:00
|
|
|
|
|
|
|
.global _start
|
|
|
|
_start:
|
|
|
|
.quad foo
|
|
|
|
.hidden foo
|