[llvm] r202787 - Fix typo.
Rui Ueyama
ruiu at google.com
Mon Mar 3 20:22:41 PST 2014
Author: ruiu
Date: Mon Mar 3 22:22:41 2014
New Revision: 202787
URL: http://llvm.org/viewvc/llvm-project?rev=202787&view=rev
Log:
Fix typo.
Modified:
llvm/trunk/tools/llvm-objdump/COFFDump.cpp
Modified: llvm/trunk/tools/llvm-objdump/COFFDump.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/llvm-objdump/COFFDump.cpp?rev=202787&r1=202786&r2=202787&view=diff
==============================================================================
--- llvm/trunk/tools/llvm-objdump/COFFDump.cpp (original)
+++ llvm/trunk/tools/llvm-objdump/COFFDump.cpp Mon Mar 3 22:22:41 2014
@@ -451,7 +451,7 @@ static void printWin64EHUnwindInfo(const
outs().flush();
}
-/// Prints out the given RuntumeFunction struct for x64, assuming that Obj is
+/// Prints out the given RuntimeFunction struct for x64, assuming that Obj is
/// pointing to an executable file.
static void printRuntimeFunction(const COFFObjectFile *Obj,
const RuntimeFunction &RF) {
@@ -467,8 +467,8 @@ static void printRuntimeFunction(const C
printWin64EHUnwindInfo(reinterpret_cast<const Win64EH::UnwindInfo *>(addr));
}
-/// Prints out the given RuntumeFunction struct for x64, assuming that Obj is
-/// pointing to an object file. Unlike executable, fields in RuntumeFunction
+/// Prints out the given RuntimeFunction struct for x64, assuming that Obj is
+/// pointing to an object file. Unlike executable, fields in RuntimeFunction
/// struct are filled with zeros, but instead there are relocations pointing to
/// them so that the linker will fill targets' RVAs to the fields at link
/// time. This function interprets the relocations to find the data to be used
More information about the llvm-commits
mailing list