MC: Change default comment column to 40 characters.
authorDaniel Dunbar <daniel@zuster.org>
Fri, 5 Feb 2010 07:32:18 +0000 (07:32 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Fri, 5 Feb 2010 07:32:18 +0000 (07:32 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95378 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/MC/MCAsmInfo.h
lib/MC/MCAsmInfo.cpp

index 633b6019a927445f76608314da3a988479b6e50b..3effea435395dc51ebc094c61e512160cccb979f 100644 (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.
index 74bacfc9d3f290df5f966c164d07ff6dae9e8fb1..f3f063f4e9f6370607da7f6e5d41ff2ab5545c3e 100644 (file)
@@ -25,7 +25,7 @@ MCAsmInfo::MCAsmInfo() {
   MaxInstLength = 4;
   PCSymbol = "$";
   SeparatorChar = ';';
-  CommentColumn = 60;
+  CommentColumn = 40;
   CommentString = "#";
   GlobalPrefix = "";
   PrivateGlobalPrefix = ".";