diff options
author | Andrew Kaylor <andrew.kaylor@intel.com> | 2012-10-10 01:45:52 +0000 |
---|---|---|
committer | Andrew Kaylor <andrew.kaylor@intel.com> | 2012-10-10 01:45:52 +0000 |
commit | b96a320a2e46f1bde11949e649abe593a1821989 (patch) | |
tree | 20b88afe4ed60321d747b3b52a3a42e06ee8e984 /llvm/lib/Object/MachOObjectFile.cpp | |
parent | a8399a8cf15e838f3c33ab723a8566987b31ef4b (diff) | |
download | bcm5719-llvm-b96a320a2e46f1bde11949e649abe593a1821989.tar.gz bcm5719-llvm-b96a320a2e46f1bde11949e649abe593a1821989.zip |
Cosmetic changes
llvm-svn: 165588
Diffstat (limited to 'llvm/lib/Object/MachOObjectFile.cpp')
-rw-r--r-- | llvm/lib/Object/MachOObjectFile.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Object/MachOObjectFile.cpp b/llvm/lib/Object/MachOObjectFile.cpp index ed9449c50d3..55bac7cbdfc 100644 --- a/llvm/lib/Object/MachOObjectFile.cpp +++ b/llvm/lib/Object/MachOObjectFile.cpp @@ -581,14 +581,14 @@ error_code MachOObjectFile::isSectionBSS(DataRefImpl DRI, error_code MachOObjectFile::isSectionRequiredForExecution(DataRefImpl Sec, bool &Result) const { - // FIXME: Unimplemented + // FIXME: Unimplemented. Result = true; return object_error::success; } error_code MachOObjectFile::isSectionVirtual(DataRefImpl Sec, - bool &Result) const { - // FIXME: Unimplemented + bool &Result) const { + // FIXME: Unimplemented. Result = false; return object_error::success; } |