[llvm] [cmake] Add possibility to use ChooseMSVCCRT.cmake when include LLVM library
[llvm-core.git] / include / llvm / DebugInfo / DWARF / DWARFSection.h
blob054524d368ed575cd66a24931f744ba23336abf2
1 //===- DWARFSection.h -------------------------------------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_DEBUGINFO_DWARF_DWARFSECTION_H
10 #define LLVM_DEBUGINFO_DWARF_DWARFSECTION_H
12 #include "llvm/ADT/StringRef.h"
14 namespace llvm {
16 struct DWARFSection {
17 StringRef Data;
20 struct SectionName {
21 StringRef Name;
22 bool IsNameUnique;
25 } // end namespace llvm
27 #endif // LLVM_DEBUGINFO_DWARF_DWARFSECTION_H