[TableGen] Fix stale include paths

This worked locally because the include files were not regenerated, but
fails when performing a clean build.

llvm-svn: 367152
This commit is contained in:
Jonas Devlieghere 2019-07-26 20:55:07 +00:00
parent cdc74e2197
commit d4044aad66
2 changed files with 8 additions and 8 deletions

View File

@ -204,12 +204,12 @@ static constexpr OptionEnumValueElement s_stop_show_column_values[] = {
static constexpr PropertyDefinition g_properties[] = {
#define LLDB_PROPERTIES_debugger
#include "lldb/Core/Properties.inc"
#include "Properties.inc"
};
enum {
#define LLDB_PROPERTIES_debugger
#include "lldb/Core/PropertiesEnum.inc"
#include "PropertiesEnum.inc"
};
LoadPluginCallbackType Debugger::g_load_plugin_callback = nullptr;

View File

@ -67,12 +67,12 @@ namespace {
static constexpr PropertyDefinition g_properties[] = {
#define LLDB_PROPERTIES_modulelist
#include "lldb/Core/Properties.inc"
#include "Properties.inc"
};
enum {
#define LLDB_PROPERTIES_modulelist
#include "lldb/Core/PropertiesEnum.inc"
#include "PropertiesEnum.inc"
};
} // namespace
@ -126,9 +126,9 @@ ModuleList::ModuleList(ModuleList::Notifier *notifier)
const ModuleList &ModuleList::operator=(const ModuleList &rhs) {
if (this != &rhs) {
std::lock(m_modules_mutex, rhs.m_modules_mutex);
std::lock_guard<std::recursive_mutex> lhs_guard(m_modules_mutex,
std::lock_guard<std::recursive_mutex> lhs_guard(m_modules_mutex,
std::adopt_lock);
std::lock_guard<std::recursive_mutex> rhs_guard(rhs.m_modules_mutex,
std::lock_guard<std::recursive_mutex> rhs_guard(rhs.m_modules_mutex,
std::adopt_lock);
m_modules = rhs.m_modules;
}
@ -146,8 +146,8 @@ void ModuleList::AppendImpl(const ModuleSP &module_sp, bool use_notifier) {
}
}
void ModuleList::Append(const ModuleSP &module_sp, bool notify) {
AppendImpl(module_sp, notify);
void ModuleList::Append(const ModuleSP &module_sp, bool notify) {
AppendImpl(module_sp, notify);
}
void ModuleList::ReplaceEquivalent(const ModuleSP &module_sp) {