23 lines · plain
1# RUN: rm -rf %t && mkdir -p %t2# RUN: yaml2obj %S/Inputs/COFF_weak_nolibrary_serach_def.yaml -o %t/COFF_weak.o3# RUN: llvm-mc -filetype=obj -triple=x86_64-windows-msvc %s -o %t/COFF_main.o4# RUN: not llvm-jitlink -noexec -abs __ImageBase=0xfff00000 \5# RUN: -slab-allocate 100Kb -slab-address 0xfff00000 -slab-page-size 4096 \6# RUN: %t/COFF_weak.o %t/COFF_main.o 2>&1 | FileCheck %s7#8# Check weak external symbol with IMAGE_WEAK_EXTERN_SEARCH_NOLIBRARY Characteristics9# does not export symbol.10#11# CHECK: llvm-jitlink error: Symbols not found: [ func ]12 13 .text14 15 .def main;16 .scl 2;17 .type 32;18 .endef19 .globl main20 .p2align 4, 0x9021main:22 callq func23 retq