diff options
author | Devang Patel <dpatel@apple.com> | 2010-08-10 04:09:06 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2010-08-10 04:09:06 +0000 |
commit | 85e9580e25fdee623dc436d7f06faaefb7525f43 (patch) | |
tree | 4c313301d81d2428085fe8a4a554244fd23462da /lib/CodeGen/AsmPrinter/DwarfDebug.cpp | |
parent | 9f798e9a9e3c9bca17a0a16d788701f03643a299 (diff) |
Drop "const". It does not add value here.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110652 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/AsmPrinter/DwarfDebug.cpp')
-rw-r--r-- | lib/CodeGen/AsmPrinter/DwarfDebug.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/lib/CodeGen/AsmPrinter/DwarfDebug.cpp index 04bb1d456f..c48cab7d7d 100644 --- a/lib/CodeGen/AsmPrinter/DwarfDebug.cpp +++ b/lib/CodeGen/AsmPrinter/DwarfDebug.cpp @@ -502,7 +502,7 @@ void DwarfDebug::addBlock(DIE *Die, unsigned Attribute, unsigned Form, /// addSourceLine - Add location information to specified debug information /// entry. -void DwarfDebug::addSourceLine(DIE *Die, const DIVariable V) { +void DwarfDebug::addSourceLine(DIE *Die, DIVariable V) { // Verify variable. if (!V.Verify()) return; @@ -517,7 +517,7 @@ void DwarfDebug::addSourceLine(DIE *Die, const DIVariable V) { /// addSourceLine - Add location information to specified debug information /// entry. -void DwarfDebug::addSourceLine(DIE *Die, const DIGlobalVariable G) { +void DwarfDebug::addSourceLine(DIE *Die, DIGlobalVariable G) { // Verify global variable. if (!G.Verify()) return; @@ -532,7 +532,7 @@ void DwarfDebug::addSourceLine(DIE *Die, const DIGlobalVariable G) { /// addSourceLine - Add location information to specified debug information /// entry. -void DwarfDebug::addSourceLine(DIE *Die, const DISubprogram SP) { +void DwarfDebug::addSourceLine(DIE *Die, DISubprogram SP) { // Verify subprogram. if (!SP.Verify()) return; @@ -552,7 +552,7 @@ void DwarfDebug::addSourceLine(DIE *Die, const DISubprogram SP) { /// addSourceLine - Add location information to specified debug information /// entry. -void DwarfDebug::addSourceLine(DIE *Die, const DIType Ty) { +void DwarfDebug::addSourceLine(DIE *Die, DIType Ty) { // Verify type. if (!Ty.Verify()) return; @@ -569,7 +569,7 @@ void DwarfDebug::addSourceLine(DIE *Die, const DIType Ty) { /// addSourceLine - Add location information to specified debug information /// entry. -void DwarfDebug::addSourceLine(DIE *Die, const DINameSpace NS) { +void DwarfDebug::addSourceLine(DIE *Die, DINameSpace NS) { // Verify namespace. if (!NS.Verify()) return; |