diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2019-07-26 18:14:08 +0000 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2019-07-26 18:14:08 +0000 |
commit | 463a48e416f88a11ea7bf8ffc8cc3ff12395db10 (patch) | |
tree | 03e6759544d1ef9ae6c9629aa9e310bd1778f289 /lldb/source/Target/Thread.cpp | |
parent | 7070a0b02a915a2ae60fee442e13b447ef742e71 (diff) | |
download | bcm5719-llvm-463a48e416f88a11ea7bf8ffc8cc3ff12395db10.tar.gz bcm5719-llvm-463a48e416f88a11ea7bf8ffc8cc3ff12395db10.zip |
[TableGen] Move target properties into a separate file (NFC)
With the plugins having their own tablgen file, it makes sense to split
off the target properties as well.
llvm-svn: 367139
Diffstat (limited to 'lldb/source/Target/Thread.cpp')
-rw-r--r-- | lldb/source/Target/Thread.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Target/Thread.cpp b/lldb/source/Target/Thread.cpp index 0fe9b1ef9f2..f436730b577 100644 --- a/lldb/source/Target/Thread.cpp +++ b/lldb/source/Target/Thread.cpp @@ -65,12 +65,12 @@ const ThreadPropertiesSP &Thread::GetGlobalProperties() { static constexpr PropertyDefinition g_properties[] = { #define LLDB_PROPERTIES_thread -#include "lldb/Core/Properties.inc" +#include "Properties.inc" }; enum { #define LLDB_PROPERTIES_thread -#include "lldb/Core/PropertiesEnum.inc" +#include "PropertiesEnum.inc" }; class ThreadOptionValueProperties : public OptionValueProperties { |