[Lldb-commits] [lldb] r270620 - Ach, editing too many files at once. Make this file compile again.
Jason Molenda via lldb-commits
lldb-commits at lists.llvm.org
Tue May 24 15:05:22 PDT 2016
Author: jmolenda
Date: Tue May 24 17:05:22 2016
New Revision: 270620
URL: http://llvm.org/viewvc/llvm-project?rev=270620&view=rev
Log:
Ach, editing too many files at once. Make this file compile again.
Modified:
lldb/trunk/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp
Modified: lldb/trunk/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp?rev=270620&r1=270619&r2=270620&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp (original)
+++ lldb/trunk/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp Tue May 24 17:05:22 2016
@@ -2610,7 +2610,7 @@ ObjectFileMachO::ParseSymtab ()
// kext bundles don't have LC_FUNCTION_STARTS / eh_frame sections, but we can assume that we have
// accurate symbol boundaries for them, they're a special case.
- if (function_starts_count == 0 && header.filetype != MH_KEXT_BUNDLE)
+ if (function_starts_count == 0 && m_header.filetype != llvm::MachO::MH_KEXT_BUNDLE)
{
// No LC_FUNCTION_STARTS/eh_frame section in this binary, we're going to assume the binary
// has been stripped. Don't allow assembly language instruction emulation because we don't
More information about the lldb-commits
mailing list