1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00

Fix one comment and update another. Slightly reformat.

llvm-svn: 192016
This commit is contained in:
Eric Christopher 2013-10-05 00:32:34 +00:00
parent cf869e9b2a
commit 4cdd7ad156
2 changed files with 3 additions and 4 deletions

View File

@ -353,7 +353,7 @@ private:
DIEEntry *createDIEEntry(DIE *Entry);
/// resolve - Look in the DwarfDebug map for the MDNode that
/// corresponds to a scope reference.
/// corresponds to the reference.
template <typename T> T resolve(DIRef<T> Ref) const {
return DD->resolve(Ref);
}

View File

@ -713,9 +713,8 @@ public:
/// Returns the Dwarf Version.
unsigned getDwarfVersion() const { return DwarfVersion; }
/// Find the MDNode for the given scope reference.
template <typename T>
T resolve(DIRef<T> Ref) const {
/// Find the MDNode for the given reference.
template <typename T> T resolve(DIRef<T> Ref) const {
return Ref.resolve(TypeIdentifierMap);
}