diff options
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([]{}); -} |