[llvm] [BOLT][NFC] Add tests with multiple CUs (PR #93615)

Alexander Yermolovich via llvm-commits llvm-commits at lists.llvm.org
Wed May 29 16:17:02 PDT 2024


================
@@ -0,0 +1,38 @@
+# REQUIRES: system-linux
+
+# RUN: llvm-mc -dwarf-version=5 -filetype=obj -triple x86_64-unknown-linux %p/Inputs/dwarf5-subprogram-multiple-ranges-main.s -o %t1.o
+# RUN: llvm-mc -dwarf-version=5 -filetype=obj -triple x86_64-unknown-linux %p/Inputs/dwarf5-subprogram-multiple-ranges-other.s -o %t2.o
+# RUN: %clang %cflags %t1.o %t2.o -o %t.exe -Wl,-q
+# RUN: llvm-bolt %t.exe -o %t.bolt --update-debug-sections
+# RUN: llvm-objdump %t.bolt --disassemble > %t1.txt
+# RUN: llvm-dwarfdump --show-form --verbose --debug-info %t.bolt >> %t1.txt
+# RUN: cat %t1.txt | FileCheck --check-prefix=POSTCHECK %s
+
+# This test checks BOLT correctly handles DW_TAG_subprogram with Ranges with multiple entries and multiple CUs.
----------------
ayermolo wrote:

double hashes
"This test checks that BOLT"
later part maybe rephrase something like "handles multiple CUs with ranges".

https://github.com/llvm/llvm-project/pull/93615


More information about the llvm-commits mailing list