Mercurial > hg > CbC > CbC_llvm
comparison clang/test/Modules/ModuleDebugInfoDwoId.cpp @ 207:2e18cbf3894f
LLVM12
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 08 Jun 2021 06:07:14 +0900 |
parents | |
children | c4bab56944e8 |
comparison
equal
deleted
inserted
replaced
173:0572611fdcc8 | 207:2e18cbf3894f |
---|---|
1 // Tests that dwoIds in modules match the dwoIDs in the main file. | |
2 | |
3 // REQUIRES: asserts | |
4 | |
5 // RUN: rm -rf %t.cache | |
6 // RUN: %clang_cc1 -triple %itanium_abi_triple -x objective-c++ -std=c++11 -debugger-tuning=lldb -debug-info-kind=limited -fmodules -fmodule-format=obj -dwarf-ext-refs -fimplicit-module-maps -fmodules-cache-path=%t.cache %s -I %S/Inputs -emit-llvm -o %t.ll -mllvm -debug-only=pchcontainer 2> %t.mod-out | |
7 // RUN: cat %t.ll %t.mod-out | FileCheck %s | |
8 // RUN: cat %t.ll | FileCheck --check-prefix=CHECK-REALIDS %s | |
9 // RUN: cat %t.mod-out | FileCheck --check-prefix=CHECK-REALIDS %s | |
10 | |
11 @import DebugDwoId; | |
12 | |
13 Dummy d; | |
14 | |
15 // Find the emitted dwoID for DebugInfoId and compare it against the one in the PCM. | |
16 // CHECK: DebugDwoId-{{[A-Z0-9]+}}.pcm | |
17 // CHECK-SAME: dwoId: [[DWOID:[0-9]+]] | |
18 // CHECK: dwoId: [[DWOID]] | |
19 // CHECK-NEXT: !DIFile(filename: "DebugDwoId" | |
20 | |
21 // Make sure the dwo IDs are real IDs and not fallback values (~1ULL). | |
22 // CHECK-REALIDS-NOT: dwoId: 18446744073709551615 |