|
41 | 41 | # RUN: llvm-objdump -t %t1 | FileCheck --check-prefix=HIDDEN3 %s
|
42 | 42 | # HIDDEN3: 0000000000000001 *ABS* 00000000 .hidden newsym
|
43 | 43 |
|
| 44 | +# The symbol is not referenced. Don't provide it. |
| 45 | +# RUN: echo "PROVIDE(newsym = 1);" > %t.script |
| 46 | +# RUN: ld.lld -o %t1 --script %t.script %t |
| 47 | +# RUN: llvm-objdump -t %t1 | FileCheck --check-prefix=PROVIDE4 %s |
| 48 | +# PROVIDE4-NOT: 0000000000000001 *ABS* 00000000 newsym |
| 49 | + |
| 50 | +# The symbol is not referenced. Don't provide it. |
| 51 | +# RUN: echo "PROVIDE_HIDDEN(newsym = 1);" > %t.script |
| 52 | +# RUN: ld.lld -o %t1 --script %t.script %t |
| 53 | +# RUN: llvm-objdump -t %t1 | FileCheck --check-prefix=HIDDEN4 %s |
| 54 | +# HIDDEN4-NOT: 0000000000000001 *ABS* 00000000 .hidden newsym |
| 55 | + |
| 56 | +# Provide existing symbol. The value should be 0, even though we |
| 57 | +# have value of 1 in PROVIDE() |
| 58 | +# RUN: echo "PROVIDE(somesym = 1);" > %t.script |
| 59 | +# RUN: ld.lld -o %t1 --script %t.script %t |
| 60 | +# RUN: llvm-objdump -t %t1 | FileCheck --check-prefix=PROVIDE5 %s |
| 61 | +# PROVIDE5: 0000000000000000 *ABS* 00000000 somesym |
| 62 | + |
| 63 | +# Provide existing symbol. The value should be 0, even though we |
| 64 | +# have value of 1 in PROVIDE_HIDDEN(). Visibility should not change |
| 65 | +# RUN: echo "PROVIDE_HIDDEN(somesym = 1);" > %t.script |
| 66 | +# RUN: ld.lld -o %t1 --script %t.script %t |
| 67 | +# RUN: llvm-objdump -t %t1 | FileCheck --check-prefix=HIDDEN5 %s |
| 68 | +# HIDDEN5: 0000000000000000 *ABS* 00000000 somesym |
| 69 | + |
44 | 70 | .global _start
|
45 | 71 | _start:
|
46 | 72 | nop
|
|
0 commit comments