1;; Testing that we print out INFO message when binary has split dwarf. 2 3; RUN: mkdir -p %t 4; RUN: cd %t 5; RUN: llvm-mc -dwarf-version=4 -filetype=obj -triple x86_64-unknown-linux %p/Inputs/dwarf4-df-dualcu-main.s \ 6; RUN: -split-dwarf-file=main.dwo -o main.o 7; RUN: llvm-mc -dwarf-version=4 -filetype=obj -triple x86_64-unknown-linux %p/Inputs/dwarf4-df-dualcu-helper.s \ 8; RUN: -split-dwarf-file=helper.dwo -o helper.o 9; RUN: %clang %cflags -gdwarf-5 -gsplit-dwarf=split main.o helper.o -o main.exe -fno-pic -no-pie 10; RUN: llvm-bolt main.exe -o main.exe.bolt --update-debug-sections | FileCheck -check-prefix=BOLT %s 11 12; BOLT: BOLT-INFO: processing split DWARF 13