brintos

brintos / llvm-project-archived public Read only

0
0
Text · 512 B · ac1ef2d Raw
24 lines · plain
1# REQUIRES: asserts2# RUN: llvm-mc -filetype=obj -triple=x86_64-windows-msvc %s -o %t3# RUN: llvm-jitlink -num-threads=0 -debug-only=jitlink -noexec \4# RUN:              -abs func=0xcafef00d %t 2>&1 \5# RUN:              | FileCheck %s6#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	.text13 14	.file	"skip_this_file_symbol"15 16	.def	main;17	.scl	2;18	.type	32;19	.endef20	.globl	main21	.p2align	4, 0x9022main:23	retq24