This adds a callback to PrintingPolicy to allow CGDebugInfo to remap file paths according to -fdebug-prefix-map. Otherwise the debug info (particularly function names for C++ lambdas) may contain paths that should have been remapped in the debug info. <rdar://problem/46128056> Differential Revision: https://reviews.llvm.org/D55137 llvm-svn: 348397
11 lines
378 B
C++
11 lines
378 B
C++
// RUN: %clang_cc1 -debug-info-kind=limited -triple %itanium_abi_triple \
|
|
// RUN: -fdebug-prefix-map=%S=/SOURCE_ROOT %s -emit-llvm -o - | FileCheck %s
|
|
|
|
template <typename T> void b(T) {}
|
|
void c() {
|
|
// CHECK: !DISubprogram(name: "b<(lambda at
|
|
// CHECK-SAME: /SOURCE_ROOT/debug-prefix-map-lambda.cpp
|
|
// CHECK-SAME: [[@LINE+1]]:{{[0-9]+}})>"
|
|
b([]{});
|
|
}
|