mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-24 06:30:19 +00:00
Fix Whitespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@116036 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
30db22f3c9
commit
290b316a4e
@ -11,7 +11,7 @@
|
|||||||
//
|
//
|
||||||
// Structures and enums defined within this file where created using
|
// Structures and enums defined within this file where created using
|
||||||
// information from Microsoft's publicly available PE/COFF format document:
|
// information from Microsoft's publicly available PE/COFF format document:
|
||||||
//
|
//
|
||||||
// Microsoft Portable Executable and Common Object File Format Specification
|
// Microsoft Portable Executable and Common Object File Format Specification
|
||||||
// Revision 8.1 - February 15, 2008
|
// Revision 8.1 - February 15, 2008
|
||||||
//
|
//
|
||||||
@ -133,11 +133,11 @@ namespace COFF {
|
|||||||
};
|
};
|
||||||
|
|
||||||
enum SymbolComplexType {
|
enum SymbolComplexType {
|
||||||
IMAGE_SYM_DTYPE_NULL = 0, ///< No complex type; simple scalar variable.
|
IMAGE_SYM_DTYPE_NULL = 0, ///< No complex type; simple scalar variable.
|
||||||
IMAGE_SYM_DTYPE_POINTER = 1, ///< A pointer to base type.
|
IMAGE_SYM_DTYPE_POINTER = 1, ///< A pointer to base type.
|
||||||
IMAGE_SYM_DTYPE_FUNCTION = 2, ///< A function that returns a base type.
|
IMAGE_SYM_DTYPE_FUNCTION = 2, ///< A function that returns a base type.
|
||||||
IMAGE_SYM_DTYPE_ARRAY = 3, ///< An array of base type.
|
IMAGE_SYM_DTYPE_ARRAY = 3, ///< An array of base type.
|
||||||
|
|
||||||
/// Type is formed as (base + (derived << SCT_COMPLEX_TYPE_SHIFT))
|
/// Type is formed as (base + (derived << SCT_COMPLEX_TYPE_SHIFT))
|
||||||
SCT_COMPLEX_TYPE_SHIFT = 8
|
SCT_COMPLEX_TYPE_SHIFT = 8
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user