diff options
author | Dan Gohman <gohman@apple.com> | 2009-07-13 20:46:11 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-07-13 20:46:11 +0000 |
commit | 2e4da5e4abbccafd1a79eed57829826072a275be (patch) | |
tree | 6d55b889af5409604eff34584bd6f734fd6e01cd | |
parent | db425496a6b28eda5584a43e1f02e854d26a2007 (diff) | |
download | external_llvm-2e4da5e4abbccafd1a79eed57829826072a275be.zip external_llvm-2e4da5e4abbccafd1a79eed57829826072a275be.tar.gz external_llvm-2e4da5e4abbccafd1a79eed57829826072a275be.tar.bz2 |
Delete a spurious const.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75493 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Target/TargetAsmInfo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Target/TargetAsmInfo.h b/include/llvm/Target/TargetAsmInfo.h index d031d74..b38a2e6 100644 --- a/include/llvm/Target/TargetAsmInfo.h +++ b/include/llvm/Target/TargetAsmInfo.h @@ -697,7 +697,7 @@ namespace llvm { char getSeparatorChar() const { return SeparatorChar; } - const unsigned getCommentColumn() const { + unsigned getCommentColumn() const { return CommentColumn; } const char *getCommentString() const { |