Fixed the header guards.

llvm-svn: 139490
This commit is contained in:
Greg Clayton 2011-09-12 04:20:38 +00:00
parent b14eeddaa1
commit a76dd62211
16 changed files with 30 additions and 35 deletions

View File

@ -7,8 +7,8 @@
//
//===----------------------------------------------------------------------===//
#ifndef liblldb_DWARFAttribute_h_
#define liblldb_DWARFAttribute_h_
#ifndef SymbolFileDWARF_DWARFAttribute_h_
#define SymbolFileDWARF_DWARFAttribute_h_
#include "DWARFDefines.h"
#include <vector>
@ -42,4 +42,4 @@ protected:
};
#endif // liblldb_DWARFAttribute_h_
#endif // SymbolFileDWARF_DWARFAttribute_h_

View File

@ -7,7 +7,7 @@
//
//===----------------------------------------------------------------------===//
#ifndef liblldb_DWARFDIECollection_h_
#ifndef SymbolFileDWARF_DWARFDIECollection_h_
#define SymbolFileDWARF_DWARFDIECollection_h_
#include "SymbolFileDWARF.h"

View File

@ -7,7 +7,7 @@
//
//===----------------------------------------------------------------------===//
#ifndef liblldb_DWARFDebugAbbrev_h_
#ifndef SymbolFileDWARF_DWARFDebugAbbrev_h_
#define SymbolFileDWARF_DWARFDebugAbbrev_h_
#include <list>

View File

@ -7,7 +7,7 @@
//
//===----------------------------------------------------------------------===//
#ifndef liblldb_DWARFDebugArangeSet_h_
#ifndef SymbolFileDWARF_DWARFDebugArangeSet_h_
#define SymbolFileDWARF_DWARFDebugArangeSet_h_
#include "SymbolFileDWARF.h"

View File

@ -7,8 +7,8 @@
//
//===----------------------------------------------------------------------===//
#ifndef liblldb_DWARFDebugInfoEntry_h_
#define liblldb_DWARFDebugInfoEntry_h_
#ifndef SymbolFileDWARF_DWARFDebugInfoEntry_h_
#define SymbolFileDWARF_DWARFDebugInfoEntry_h_
#include "SymbolFileDWARF.h"
@ -332,4 +332,4 @@ protected:
const DWARFAbbreviationDeclaration* m_abbrevDecl;
};
#endif // liblldb_DWARFDebugInfoEntry_h_
#endif // SymbolFileDWARF_DWARFDebugInfoEntry_h_

View File

@ -7,8 +7,8 @@
//
//===----------------------------------------------------------------------===//
#ifndef liblldb_DWARFDebugLine_h_
#define liblldb_DWARFDebugLine_h_
#ifndef SymbolFileDWARF_DWARFDebugLine_h_
#define SymbolFileDWARF_DWARFDebugLine_h_
#include <map>
#include <vector>
@ -119,7 +119,7 @@ public:
dw_addr_t address; // The program-counter value corresponding to a machine instruction generated by the compiler.
uint32_t line; // An unsigned integer indicating a source line number. Lines are numbered beginning at 1. The compiler may emit the value 0 in cases where an instruction cannot be attributed to any source line.
uint16_t column; // An unsigned integer indicating a column number within a source line. Columns are numbered beginning at 1. The value 0 is reserved to indicate that a statement begins at the left edge of the line.
uint16_t column; // An unsigned integer indicating a column number within a source line. Columns are numbered beginning at 1. The value 0 is reserved to indicate that a statement begins at the 'left edge' of the line.
uint16_t file; // An unsigned integer indicating the identity of the source file corresponding to a machine instruction.
uint8_t is_stmt:1, // A boolean indicating that the current instruction is the beginning of a statement.
basic_block:1, // A boolean indicating that the current instruction is the beginning of a basic block.
@ -222,4 +222,4 @@ protected:
LineTableMap m_lineTableMap;
};
#endif // liblldb_DWARFDebugLine_h_
#endif // SymbolFileDWARF_DWARFDebugLine_h_

View File

@ -7,7 +7,7 @@
//
//===----------------------------------------------------------------------===//
#ifndef liblldb_DWARFDebugLine_h_
#ifndef SymbolFileDWARF_DWARFDebugLine_h_
#define SymbolFileDWARF_DWARFDebugLine_h_
#include "SymbolFileDWARF.h"

View File

@ -7,7 +7,7 @@
//
//===----------------------------------------------------------------------===//
#ifndef liblldb_DWARFDebugMacinfoEntry_h_
#ifndef SymbolFileDWARF_DWARFDebugMacinfoEntry_h_
#define SymbolFileDWARF_DWARFDebugMacinfoEntry_h_
#include "SymbolFileDWARF.h"

View File

@ -7,7 +7,7 @@
//
//===----------------------------------------------------------------------===//
#ifndef liblldb_DWARFDebugPubnames_h_
#ifndef SymbolFileDWARF_DWARFDebugPubnames_h_
#define SymbolFileDWARF_DWARFDebugPubnames_h_
#include "SymbolFileDWARF.h"

View File

@ -7,7 +7,7 @@
//
//===----------------------------------------------------------------------===//
#ifndef liblldb_DWARFDebugPubnamesSet_h_
#ifndef SymbolFileDWARF_DWARFDebugPubnamesSet_h_
#define SymbolFileDWARF_DWARFDebugPubnamesSet_h_
#include "SymbolFileDWARF.h"

View File

@ -7,8 +7,8 @@
//
//===----------------------------------------------------------------------===//
#ifndef liblldb_DWARFDebugRanges_h_
#define liblldb_DWARFDebugRanges_h_
#ifndef SymbolFileDWARF_DWARFDebugRanges_h_
#define SymbolFileDWARF_DWARFDebugRanges_h_
#include "SymbolFileDWARF.h"
#include <map>
@ -86,4 +86,4 @@ protected:
};
#endif // liblldb_DWARFDebugRanges_h_
#endif // SymbolFileDWARF_DWARFDebugRanges_h_

View File

@ -7,8 +7,8 @@
//
//===----------------------------------------------------------------------===//
#ifndef liblldb_DWARFDefines_h_
#define liblldb_DWARFDefines_h_
#ifndef SymbolFileDWARF_DWARFDefines_h_
#define SymbolFileDWARF_DWARFDefines_h_
#include <stdint.h>
#include <stdbool.h>
@ -113,4 +113,4 @@ const char *DW_GNU_EH_PE_value_to_name (uint32_t val);
} // namespace lldb_private
#endif // liblldb_DWARFDefines_h_
#endif // SymbolFileDWARF_DWARFDefines_h_

View File

@ -6,14 +6,9 @@
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
//
//
//===----------------------------------------------------------------------===//
#ifndef liblldb_DWARFFormValue_h_
#define SymbolFileDWARF_DWARFFormValue_h_
#ifndef SymbolFileDWARF_DWARFFormValue_h_
#define SymbolFileDWARF_DWARFFormValue_h_
#include "SymbolFileDWARF.h"
#include <stddef.h> // for NULL

View File

@ -7,7 +7,7 @@
//
//===----------------------------------------------------------------------===//
#ifndef liblldb_DWARFLocationDescription_h_
#ifndef SymbolFileDWARF_DWARFLocationDescription_h_
#define SymbolFileDWARF_DWARFLocationDescription_h_
#include "SymbolFileDWARF.h"

View File

@ -7,7 +7,7 @@
//
//===----------------------------------------------------------------------===//
#ifndef liblldb_DWARFLocationList_h_
#ifndef SymbolFileDWARF_DWARFLocationList_h_
#define SymbolFileDWARF_DWARFLocationList_h_
#include "SymbolFileDWARF.h"

View File

@ -7,8 +7,8 @@
//
//===----------------------------------------------------------------------===//
#ifndef liblldb_SymbolFileDWARFDebugMap_h_
#define liblldb_SymbolFileDWARFDebugMap_h_
#ifndef SymbolFileDWARF_SymbolFileDWARFDebugMap_h_
#define SymbolFileDWARF_SymbolFileDWARFDebugMap_h_
#include <vector>
@ -219,4 +219,4 @@ protected:
UniqueDWARFASTTypeMap m_unique_ast_type_map;
};
#endif // #ifndef liblldb_SymbolFileDWARFDebugMap_h_
#endif // #ifndef SymbolFileDWARF_SymbolFileDWARFDebugMap_h_