diff options
| author | Rafael Espindola <rafael.espindola@gmail.com> | 2011-05-10 20:35:05 +0000 | 
|---|---|---|
| committer | Rafael Espindola <rafael.espindola@gmail.com> | 2011-05-10 20:35:05 +0000 | 
| commit | 2fe0ee1ce2e424311d342c97a7eb37f369199813 (patch) | |
| tree | 9f58880c0f37a79b63279d5ea4d141dd18988e61 /llvm/lib/CodeGen/AsmPrinter | |
| parent | 5bd77b3b0f928eda1b9c1e457540541d69de4cda (diff) | |
| download | bcm5719-llvm-2fe0ee1ce2e424311d342c97a7eb37f369199813.tar.gz bcm5719-llvm-2fe0ee1ce2e424311d342c97a7eb37f369199813.zip | |
Rename DwarfRequiresRelocationForStmtList to
DwarfRequiresRelocationForSectionOffset as this is not specific to StmtList.
llvm-svn: 131148
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter')
| -rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp index 8e0ace3abb4..fd87224a1e9 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp @@ -860,7 +860,7 @@ void DwarfDebug::constructCompileUnit(const MDNode *N) {    NewCU->addUInt(Die, dwarf::DW_AT_entry_pc, dwarf::DW_FORM_addr, 0);    // DW_AT_stmt_list is a offset of line number information for this    // compile unit in debug_line section. -  if(Asm->MAI->doesDwarfRequireRelocationForStmtList()) +  if(Asm->MAI->doesDwarfRequireRelocationForSectionOffset())      NewCU->addLabel(Die, dwarf::DW_AT_stmt_list, dwarf::DW_FORM_data4,                      Asm->GetTempSymbol("section_line"));    else | 

