diff options
author | Jason Molenda <jmolenda@apple.com> | 2016-05-24 22:05:22 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 2016-05-24 22:05:22 +0000 |
commit | 63294b730d1ebd2a4f606222e6e8a2d556b40ae7 (patch) | |
tree | 33cc1c254a19884bf63714f1a51832d2eb52af60 /lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp | |
parent | fc4c8a1e46ea2d92c0093b44d800955c2b87cdc0 (diff) | |
download | bcm5719-llvm-63294b730d1ebd2a4f606222e6e8a2d556b40ae7.tar.gz bcm5719-llvm-63294b730d1ebd2a4f606222e6e8a2d556b40ae7.zip |
Ach, editing too many files at once. Make this file compile again.
llvm-svn: 270620
Diffstat (limited to 'lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp')
-rw-r--r-- | lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp b/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp index 0577f84f97f..72e6de616f7 100644 --- a/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp +++ b/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp @@ -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 |