Tweak MCSymbol doxyments.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74599 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Daniel Dunbar 2009-07-01 07:03:41 +00:00
parent 165e8344d8
commit d6bb283de9

View File

@ -30,8 +30,8 @@ namespace llvm {
class MCSymbol { class MCSymbol {
/// Name - The name of the symbol. /// Name - The name of the symbol.
std::string Name; std::string Name;
/// Section - The section the symbol is defined in, or null if not defined /// Section - The section the symbol is defined in, or null if the symbol
/// in this translation unit. /// has not been defined in the associated translation unit.
MCSection *Section; MCSection *Section;
/// IsTemporary - True if this is an assembler temporary label, which /// IsTemporary - True if this is an assembler temporary label, which
@ -39,7 +39,9 @@ namespace llvm {
/// "Lfoo" or ".foo". /// "Lfoo" or ".foo".
unsigned IsTemporary : 1; unsigned IsTemporary : 1;
/// IsExternal - ? /// IsExternal - True if this symbol has been implicitly defined as an
/// external, for example by using it in an expression without ever emitting
/// it as a label. The @var Section for an external symbol is always null.
unsigned IsExternal : 1; unsigned IsExternal : 1;
private: // MCContext creates and uniques these. private: // MCContext creates and uniques these.