mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-26 05:16:06 +00:00
8 lines
406 B
C
8 lines
406 B
C
// RUN: %clang_cc1 -debug-info-kind=limited -emit-llvm -o - %s | FileCheck %s
|
|
// RUN: %clang_cc1 -debug-info-kind=limited -fsplit-dwarf-inlining -emit-llvm -o - %s | FileCheck --check-prefix=ABSENT %s
|
|
void f(void) {}
|
|
// Verify that disabling split debug inlining info is propagated to the debug
|
|
// info metadata.
|
|
// CHECK: !DICompileUnit({{.*}}, splitDebugInlining: false
|
|
// ABSENT-NOT: splitDebugInlining
|