[clang-cl] Ignore /Wv and /Wv:17 flags
[llvm-project.git] / clang / test / CodeGenCXX / debug-prefix-map-lambda.cpp
blobf0fb1a312c8be46127d1e0fa2a65b0129bf4ef80
1 // RUN: %clang_cc1 -debug-info-kind=limited -triple %itanium_abi_triple \
2 // RUN: -fdebug-prefix-map=%S=/SOURCE_ROOT %s -emit-llvm -o - | FileCheck %s
4 template <typename T> void b(T) {}
5 void c() {
6 // CHECK: !DISubprogram(name: "b<(lambda at
7 // CHECK-SAME: SOURCE_ROOT
8 // CHECK-SAME: [[@LINE+1]]:{{[0-9]+}})>"
9 b([]{});