diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2016-07-04 01:26:27 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2016-07-04 01:26:27 +0000 |
commit | f252951e90bc02d944ef781779202c56205db604 (patch) | |
tree | 4713aee6f4b0f8c221016c55362bf227d85804eb /llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp | |
parent | 940cd9368d0c8bc6833f2bc0fc53568d74ea516f (diff) | |
download | bcm5719-llvm-f252951e90bc02d944ef781779202c56205db604.tar.gz bcm5719-llvm-f252951e90bc02d944ef781779202c56205db604.zip |
Reformat comment lines.
llvm-svn: 274480
Diffstat (limited to 'llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp')
-rw-r--r-- | llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp b/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp index 6fc9999ac7b..9965f021aef 100644 --- a/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp +++ b/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp @@ -358,7 +358,7 @@ static bool isRequiredForExecution(const SectionRef Section) { const coff_section *CoffSection = COFFObj->getCOFFSection(Section); // Avoid loading zero-sized COFF sections. // In PE files, VirtualSize gives the section size, and SizeOfRawData - // may be zero for sections with content. In Obj files, SizeOfRawData + // may be zero for sections with content. In Obj files, SizeOfRawData // gives the section size, and VirtualSize is always zero. Hence // the need to check for both cases below. bool HasContent = |