80 columns.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@117784 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Jim Grosbach 2010-10-30 13:46:39 +00:00
parent ad6f541840
commit cf000c130f

View File

@ -150,8 +150,8 @@ class DwarfRegNum<list<int> Numbers> {
// These values can be determined by locating the <target>.h file in the // These values can be determined by locating the <target>.h file in the
// directory llvmgcc/gcc/config/<target>/ and looking for REGISTER_NAMES. The // directory llvmgcc/gcc/config/<target>/ and looking for REGISTER_NAMES. The
// order of these names correspond to the enumeration used by gcc. A value of // order of these names correspond to the enumeration used by gcc. A value of
// -1 indicates that the gcc number is undefined and -2 that register number is // -1 indicates that the gcc number is undefined and -2 that register number
// invalid for this mode/flavour. // is invalid for this mode/flavour.
list<int> DwarfNumbers = Numbers; list<int> DwarfNumbers = Numbers;
} }
@ -506,9 +506,9 @@ class AsmParser {
// name. // name.
string AsmParserClassName = "AsmParser"; string AsmParserClassName = "AsmParser";
// AsmParserInstCleanup - If non-empty, this is the name of a custom function on the // AsmParserInstCleanup - If non-empty, this is the name of a custom member
// AsmParser class to call on every matched instruction. This can be used to // function of the AsmParser class to call on every matched instruction.
// perform target specific instruction post-processing. // This can be used to perform target specific instruction post-processing.
string AsmParserInstCleanup = ""; string AsmParserInstCleanup = "";
// Variant - AsmParsers can be of multiple different variants. Variants are // Variant - AsmParsers can be of multiple different variants. Variants are