MC: Change default comment column to 40 characters.

llvm-svn: 95378
This commit is contained in:
Daniel Dunbar 2010-02-05 07:32:18 +00:00
parent c6eec40189
commit 675ae27e37
2 changed files with 2 additions and 2 deletions

View File

@ -62,7 +62,7 @@ namespace llvm {
/// CommentColumn - This indicates the comment num (zero-based) at
/// which asm comments should be printed.
unsigned CommentColumn; // Defaults to 60
unsigned CommentColumn; // Defaults to 40
/// CommentString - This indicates the comment character used by the
/// assembler.

View File

@ -25,7 +25,7 @@ MCAsmInfo::MCAsmInfo() {
MaxInstLength = 4;
PCSymbol = "$";
SeparatorChar = ';';
CommentColumn = 60;
CommentColumn = 40;
CommentString = "#";
GlobalPrefix = "";
PrivateGlobalPrefix = ".";