1 // Tests that dwoIds in modules match the dwoIDs in the main file. 2 3 // RUN: rm -rf %t.cache 4 // 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 &> %t.mod-out 5 // RUN: cat %t.ll %t.mod-out | FileCheck %s 6 // RUN: cat %t.ll | FileCheck --check-prefix=CHECK-REALIDS %s 7 // RUN: cat %t.mod-out | FileCheck --check-prefix=CHECK-REALIDS %s 8 9 @import DebugDwoId; 10 11 Dummy d; 12 13 // Find the emitted dwoID for DebugInfoId and compare it against the one in the PCM. 14 // CHECK: DebugDwoId-{{[A-Z0-9]+}}.pcm 15 // CHECK-SAME: dwoId: [[DWOID:[0-9]+]] 16 // CHECK: dwoId: [[DWOID]] 17 // CHECK-NEXT: !DIFile(filename: "DebugDwoId" 18 19 // Make sure the dwo IDs are real IDs and not fallback values (~1ULL). 20 // CHECK-REALIDS-NOT: dwoId: 18446744073709551615 21