mirror of
https://github.com/opnsense/src.git
synced 2026-03-20 01:35:49 -04:00
7 lines
415 B
C
7 lines
415 B
C
// RUN: %clang_cc1 -debug-info-kind=limited -fno-split-dwarf-inlining -S -emit-llvm -o - %s | FileCheck %s
|
|
// RUN: %clang_cc1 -debug-info-kind=limited -S -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
|