Comment formatting. Removing of unused #include and type forwarding.

OCD is fun!

llvm-svn: 80030
This commit is contained in:
Bill Wendling 2009-08-25 21:01:42 +00:00
parent 88093c7594
commit 0b3500164b
1 changed files with 50 additions and 53 deletions

View File

@ -16,12 +16,9 @@
#ifndef LLVM_TARGET_ASM_INFO_H
#define LLVM_TARGET_ASM_INFO_H
#include "llvm/Support/DataTypes.h"
#include <cassert>
namespace llvm {
template <typename T> class SmallVectorImpl;
/// MCAsmInfo - This class is intended to be used as a base class for asm
/// properties and features specific to the target.
namespace ExceptionHandling { enum ExceptionsType { None, Dwarf, SjLj }; }
@ -184,14 +181,14 @@ namespace llvm {
/// TextAlignFillValue - If non-zero, this is used to fill the executable
/// space created as the result of a alignment directive.
unsigned TextAlignFillValue;
unsigned TextAlignFillValue; // Defaults to 0
//===--- Section Switching Directives ---------------------------------===//
/// JumpTableDirective - if non-null, the directive to emit before jump
/// table entries. FIXME: REMOVE THIS.
const char *JumpTableDirective;
const char *PICJumpTableDirective;
const char *JumpTableDirective; // Defaults to NULL.
const char *PICJumpTableDirective; // Defaults to NULL.
//===--- Global Variable Emission Directives --------------------------===//
@ -233,15 +230,15 @@ namespace llvm {
/// UsedDirective - This directive, if non-null, is used to declare a global
/// as being used somehow that the assembler can't see. This prevents dead
/// code elimination on some targets.
const char *UsedDirective; // Defaults to null.
const char *UsedDirective; // Defaults to NULL.
/// WeakRefDirective - This directive, if non-null, is used to declare a
/// global as being a weak undefined symbol.
const char *WeakRefDirective; // Defaults to null.
const char *WeakRefDirective; // Defaults to NULL.
/// WeakDefDirective - This directive, if non-null, is used to declare a
/// global as being a weak defined symbol.
const char *WeakDefDirective; // Defaults to null.
const char *WeakDefDirective; // Defaults to NULL.
/// HiddenDirective - This directive, if non-null, is used to declare a
/// global or function as having hidden visibility.