[llvm-commits] [llvm] r75493 - /llvm/trunk/include/llvm/Target/TargetAsmInfo.h

Dan Gohman gohman at apple.com
Mon Jul 13 13:46:11 PDT 2009


Author: djg
Date: Mon Jul 13 15:46:11 2009
New Revision: 75493

URL: http://llvm.org/viewvc/llvm-project?rev=75493&view=rev
Log:
Delete a spurious const.

Modified:
    llvm/trunk/include/llvm/Target/TargetAsmInfo.h

Modified: llvm/trunk/include/llvm/Target/TargetAsmInfo.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Target/TargetAsmInfo.h?rev=75493&r1=75492&r2=75493&view=diff

==============================================================================
--- llvm/trunk/include/llvm/Target/TargetAsmInfo.h (original)
+++ llvm/trunk/include/llvm/Target/TargetAsmInfo.h Mon Jul 13 15:46:11 2009
@@ -697,7 +697,7 @@
     char getSeparatorChar() const {
       return SeparatorChar;
     }
-    const unsigned getCommentColumn() const {
+    unsigned getCommentColumn() const {
       return CommentColumn;
     }
     const char *getCommentString() const {





More information about the llvm-commits mailing list