1 | // RUN: %clang_cc1 -debug-info-kind=limited -fno-split-dwarf-inlining -S -emit-llvm -o - %s | FileCheck %s |
---|---|
2 | // RUN: %clang_cc1 -debug-info-kind=limited -S -emit-llvm -o - %s | FileCheck --check-prefix=ABSENT %s |
3 | void f(void) {} |
4 | // Verify that disabling split debug inlining info is propagated to the debug |
5 | // info metadata. |
6 | // CHECK: !DICompileUnit({{.*}}, splitDebugInlining: false |
7 | // ABSENT-NOT: splitDebugInlining |
8 |