~ubuntu-branches/ubuntu/trusty/llvm-toolchain-snapshot/trusty-201310232150

« back to all changes in this revision

Viewing changes to lldb/source/Target/SectionLoadList.cpp

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2013-05-27 15:01:57 UTC
  • mfrom: (0.10.1) (0.9.1) (0.8.1) (0.7.1) (0.6.1) (0.5.2)
  • Revision ID: package-import@ubuntu.com-20130527150157-tdkrsjpuvht7v0qx
Tags: 1:3.4~svn182733-1~exp1
* New snapshot release (3.4 release)
* Add a symlink of libLLVM-3.4.so.1 to usr/lib/llvm-3.4/lib/libLLVM-3.4.so
    to fix make the llvm-config-3.4 --libdir work (Closes: #708677)
  * Various packages rename to allow co installations:
    * libclang1 => libclang1-3.4
    * libclang1-dbg => libclang1-3.4-dbg
    * libclang-dev => libclang-3.4-dev
    * libclang-common-dev => libclang-common-3.4-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
    if (log)
65
65
    {
66
66
        const FileSpec &module_file_spec (section->GetModule()->GetFileSpec());
67
 
        log->Printf ("SectionLoadList::%s (section = %p (%s%s%s.%s), load_addr = 0x%16.16" PRIx64 ")",
 
67
        log->Printf ("SectionLoadList::%s (section = %p (%s.%s), load_addr = 0x%16.16" PRIx64 ")",
68
68
                     __FUNCTION__,
69
69
                     section.get(),
70
 
                     module_file_spec.GetDirectory().AsCString(),
71
 
                     module_file_spec.GetDirectory() ? "/" : "",
72
 
                     module_file_spec.GetFilename().AsCString(),
 
70
                     module_file_spec.GetPath().c_str(),
73
71
                     section->GetName().AsCString(),
74
72
                     load_addr);
75
73
    }
141
139
        if (log)
142
140
        {
143
141
            const FileSpec &module_file_spec (section_sp->GetModule()->GetFileSpec());
144
 
            log->Printf ("SectionLoadList::%s (section = %p (%s%s%s.%s))",
 
142
            log->Printf ("SectionLoadList::%s (section = %p (%s.%s))",
145
143
                         __FUNCTION__,
146
144
                         section_sp.get(),
147
 
                         module_file_spec.GetDirectory().AsCString(),
148
 
                         module_file_spec.GetDirectory() ? "/" : "",
149
 
                         module_file_spec.GetFilename().AsCString(),
 
145
                         module_file_spec.GetPath().c_str(),
150
146
                         section_sp->GetName().AsCString());
151
147
        }
152
148
 
175
171
    if (log)
176
172
    {
177
173
        const FileSpec &module_file_spec (section_sp->GetModule()->GetFileSpec());
178
 
        log->Printf ("SectionLoadList::%s (section = %p (%s%s%s.%s), load_addr = 0x%16.16" PRIx64 ")",
 
174
        log->Printf ("SectionLoadList::%s (section = %p (%s.%s), load_addr = 0x%16.16" PRIx64 ")",
179
175
                     __FUNCTION__,
180
176
                     section_sp.get(),
181
 
                     module_file_spec.GetDirectory().AsCString(),
182
 
                     module_file_spec.GetDirectory() ? "/" : "",
183
 
                     module_file_spec.GetFilename().AsCString(),
 
177
                     module_file_spec.GetPath().c_str(),
184
178
                     section_sp->GetName().AsCString(),
185
179
                     load_addr);
186
180
    }