diff options
author | Alp Toker <alp@nuanti.com> | 2014-01-23 19:57:16 +0000 |
---|---|---|
committer | Alp Toker <alp@nuanti.com> | 2014-01-23 19:57:16 +0000 |
commit | ce4ab597965906419ad58b710b10a0ec04b551a0 (patch) | |
tree | 2480be6504c6f2a64176074fa8e076e6f855a11a /llvm/tools/lli/RemoteTarget.h | |
parent | 5930ae6cc2eb1946e7858bd49f1bf602f9c8308e (diff) | |
download | bcm5719-llvm-ce4ab597965906419ad58b710b10a0ec04b551a0.tar.gz bcm5719-llvm-ce4ab597965906419ad58b710b10a0ec04b551a0.zip |
Replace the interim lli build fix with something cleaner
Eliminates the LLI_BUILDING_CHILD build hack from r199885.
Also add a FIXME to remove code that tricks the tests into passing when the
feature fails to work. Please don't do stuff like this, the tests exist for a
reason!
llvm-svn: 199929
Diffstat (limited to 'llvm/tools/lli/RemoteTarget.h')
-rw-r--r-- | llvm/tools/lli/RemoteTarget.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/llvm/tools/lli/RemoteTarget.h b/llvm/tools/lli/RemoteTarget.h index 44e649e6e14..9803589eccf 100644 --- a/llvm/tools/lli/RemoteTarget.h +++ b/llvm/tools/lli/RemoteTarget.h @@ -111,11 +111,6 @@ public: RemoteTarget() : IsRunning(false), ErrorMsg("") {} virtual ~RemoteTarget() { if (IsRunning) stop(); } - - // Create an instance of the system-specific remote target class. - static RemoteTarget *createRemoteTarget(); - static RemoteTarget *createExternalRemoteTarget(std::string &ChildName); - static bool hostSupportsExternalRemoteTarget(); private: // Main processing function for the remote target process. Command messages // are received on file descriptor CmdFD and responses come back on OutFD. |