diff options
author | Michael J. Spencer <bigcheesegs@gmail.com> | 2010-10-08 03:16:56 +0000 |
---|---|---|
committer | Michael J. Spencer <bigcheesegs@gmail.com> | 2010-10-08 03:16:56 +0000 |
commit | 9367aa0950c9ab548298d6dfa49492a16fb59be3 (patch) | |
tree | fa0d92f50272db24f737293d100ef0d56e1a024b | |
parent | b5c7c5139281ea8435afd7385527b1801ef21c41 (diff) | |
download | bcm5719-llvm-9367aa0950c9ab548298d6dfa49492a16fb59be3.tar.gz bcm5719-llvm-9367aa0950c9ab548298d6dfa49492a16fb59be3.zip |
Fix Whitespace.
llvm-svn: 116036
-rw-r--r-- | llvm/include/llvm/Support/COFF.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/include/llvm/Support/COFF.h b/llvm/include/llvm/Support/COFF.h index 78254ae9921..8c0c91ccd24 100644 --- a/llvm/include/llvm/Support/COFF.h +++ b/llvm/include/llvm/Support/COFF.h @@ -11,7 +11,7 @@ // // Structures and enums defined within this file where created using // information from Microsoft's publicly available PE/COFF format document: -// +// // Microsoft Portable Executable and Common Object File Format Specification // Revision 8.1 - February 15, 2008 // @@ -133,11 +133,11 @@ namespace COFF { }; 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_FUNCTION = 2, ///< A function that returns a base type. IMAGE_SYM_DTYPE_ARRAY = 3, ///< An array of base type. - + /// Type is formed as (base + (derived << SCT_COMPLEX_TYPE_SHIFT)) SCT_COMPLEX_TYPE_SHIFT = 8 }; |