diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2019-02-21 22:26:16 +0000 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2019-02-21 22:26:16 +0000 |
commit | 936c62422f5dc2d493978f1b99e2218016d8ea13 (patch) | |
tree | 9f3ba4139206711f46f88ca7779245a9a8407bbb /lldb/source/API/SystemInitializerFull.h | |
parent | ecfac6cd2ce0421a48c2e878e8efe745afd0b2e8 (diff) | |
download | bcm5719-llvm-936c62422f5dc2d493978f1b99e2218016d8ea13.tar.gz bcm5719-llvm-936c62422f5dc2d493978f1b99e2218016d8ea13.zip |
[Reproducers] Initialize reproducers before initializing the debugger.
As per the discussion on the mailing list:
http://lists.llvm.org/pipermail/lldb-commits/Week-of-Mon-20190218/048007.html
This commit implements option (3):
> Go back to initializing the reproducer before the rest of the debugger.
> The method wouldn't be instrumented and guarantee no other SB methods are
> called or SB objects are constructed. The initialization then becomes part
> of the replay.
Differential revision: https://reviews.llvm.org/D58410
llvm-svn: 354631
Diffstat (limited to 'lldb/source/API/SystemInitializerFull.h')
-rw-r--r-- | lldb/source/API/SystemInitializerFull.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/API/SystemInitializerFull.h b/lldb/source/API/SystemInitializerFull.h index cfeb821b45c..80da7d01fb8 100644 --- a/lldb/source/API/SystemInitializerFull.h +++ b/lldb/source/API/SystemInitializerFull.h @@ -25,7 +25,7 @@ public: SystemInitializerFull(); ~SystemInitializerFull() override; - llvm::Error Initialize(const InitializerOptions &options) override; + llvm::Error Initialize() override; void Terminate() override; private: |