mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-28 10:46:07 +00:00

In cases where .dwo/.dwp files are guaranteed to be available, skipping the extra online (in the .o file) inline info can save a substantial amount of space - see the original r221306 for more details there. llvm-svn: 279651
8 lines
415 B
C
8 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
|