summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorRui Ueyama <ruiu@google.com>2014-03-04 04:22:41 +0000
committerRui Ueyama <ruiu@google.com>2014-03-04 04:22:41 +0000
commitcfb73ab1c0fec466952c6602c306e7665383f822 (patch)
tree4dc9d1b089176fc97d8aefd3c4acdbda5236a51d /tools
parent80f2397fde0fa2726a1fc1a2e4a6c794627d4f93 (diff)
downloadllvm-cfb73ab1c0fec466952c6602c306e7665383f822.tar.gz
llvm-cfb73ab1c0fec466952c6602c306e7665383f822.tar.bz2
llvm-cfb73ab1c0fec466952c6602c306e7665383f822.tar.xz
Fix typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@202787 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r--tools/llvm-objdump/COFFDump.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/llvm-objdump/COFFDump.cpp b/tools/llvm-objdump/COFFDump.cpp
index df47324422..cfca40fd49 100644
--- a/tools/llvm-objdump/COFFDump.cpp
+++ b/tools/llvm-objdump/COFFDump.cpp
@@ -451,7 +451,7 @@ static void printWin64EHUnwindInfo(const Win64EH::UnwindInfo *UI) {
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 COFFObjectFile *Obj,
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