1# REQUIRES: asserts 2# RUN: llvm-mc -filetype=obj -triple=x86_64-windows-msvc %s -o %t 3# RUN: llvm-jitlink -num-threads=0 -debug-only=jitlink -noexec \ 4# RUN: -abs func=0xcafef00d %t 2>&1 \ 5# RUN: | FileCheck %s 6# 7# Check a file debug symbol is skipped. 8# 9# CHECK: Creating graph symbols... 10# CHECK: 7: Skipping FileRecord symbol ".file" in (debug) (index: -2) 11 12 .text 13 14 .file "skip_this_file_symbol" 15 16 .def main; 17 .scl 2; 18 .type 32; 19 .endef 20 .globl main 21 .p2align 4, 0x90 22main: 23 retq 24