diff options
author | Renato Golin <renato.golin@linaro.org> | 2018-12-05 13:56:26 +0000 |
---|---|---|
committer | Renato Golin <renato.golin@linaro.org> | 2018-12-05 13:56:26 +0000 |
commit | 5419a3ce123b8ba557fab1ed722946d0efef1379 (patch) | |
tree | c49f21e71211c0f209e7fbe736d13e33ed887397 /clang/test/CodeGenCXX/debug-prefix-map-lambda.cpp | |
parent | d0afe724d1f5ca3e0a46e75849450a934ffa5ef2 (diff) | |
download | bcm5719-llvm-5419a3ce123b8ba557fab1ed722946d0efef1379.tar.gz bcm5719-llvm-5419a3ce123b8ba557fab1ed722946d0efef1379.zip |
Revert: Honor -fdebug-prefix-map when creating function names for the debug info.
This commit reverts r348060 and r348062 due to it breaking the AArch64 Full
buildbot: https://bugs.llvm.org/show_bug.cgi?id=39892
llvm-svn: 348364
Diffstat (limited to 'clang/test/CodeGenCXX/debug-prefix-map-lambda.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/debug-prefix-map-lambda.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/clang/test/CodeGenCXX/debug-prefix-map-lambda.cpp b/clang/test/CodeGenCXX/debug-prefix-map-lambda.cpp deleted file mode 100644 index f0fb1a312c8..00000000000 --- a/clang/test/CodeGenCXX/debug-prefix-map-lambda.cpp +++ /dev/null @@ -1,10 +0,0 @@ -// 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 - // CHECK-SAME: [[@LINE+1]]:{{[0-9]+}})>" - b([]{}); -} |