mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-20 12:05:48 -04:00

Summary: The changes in D59673 made the choice redundant, since we can achieve single-file split DWARF just by not setting an output file name. Like llc we can also derive whether to enable Split DWARF from whether -split-dwarf-file is set, so we don't need the flag at all anymore. The test CodeGen/split-debug-filename.c distinguished between having set or not set -enable-split-dwarf with -split-dwarf-file, but we can probably just always emit the metadata into the IR. The flag -split-dwarf wasn't used at all anymore. Reviewers: dblaikie, echristo Reviewed By: dblaikie Differential Revision: https://reviews.llvm.org/D63167 llvm-svn: 364479
25 lines
1.3 KiB
C
25 lines
1.3 KiB
C
// REQUIRES: x86-registered-target
|
|
|
|
// Testing to ensure that setting only -split-dwarf-file allows to place .dwo sections into regular output object.
|
|
// RUN: %clang_cc1 -debug-info-kind=limited -triple x86_64-unknown-linux \
|
|
// RUN: -split-dwarf-file %t.o -emit-obj -o %t.o %s -fno-experimental-new-pass-manager
|
|
// RUN: llvm-readobj -S %t.o | FileCheck --check-prefix=MODE-SINGLE %s
|
|
// RUN: %clang_cc1 -debug-info-kind=limited -triple x86_64-unknown-linux \
|
|
// RUN: -split-dwarf-file %t.o -emit-obj -o %t.o %s -fexperimental-new-pass-manager
|
|
// RUN: llvm-readobj -S %t.o | FileCheck --check-prefix=MODE-SINGLE %s
|
|
// MODE-SINGLE: .dwo
|
|
|
|
// Testing to ensure that setting both -split-dwarf-file and -split-dwarf-output
|
|
// does not place .dwo sections into regular output object.
|
|
// RUN: %clang_cc1 -debug-info-kind=limited -triple x86_64-unknown-linux \
|
|
// RUN: -split-dwarf-file %t.dwo -split-dwarf-output %t.dwo -emit-obj -o %t.o %s -fno-experimental-new-pass-manager
|
|
// RUN: llvm-readobj -S %t.o | FileCheck --check-prefix=MODE-SPLIT %s
|
|
// RUN: %clang_cc1 -debug-info-kind=limited -triple x86_64-unknown-linux \
|
|
// RUN: -split-dwarf-file %t.dwo -split-dwarf-output %t.dwo -emit-obj -o %t.o %s -fexperimental-new-pass-manager
|
|
// RUN: llvm-readobj -S %t.o | FileCheck --check-prefix=MODE-SPLIT %s
|
|
// MODE-SPLIT-NOT: .dwo
|
|
|
|
int main (void) {
|
|
return 0;
|
|
}
|