diff options
author | Justin Hibbits <jrh29@alumni.cwru.edu> | 2014-10-31 15:57:52 +0000 |
---|---|---|
committer | Justin Hibbits <jrh29@alumni.cwru.edu> | 2014-10-31 15:57:52 +0000 |
commit | db39cdfbb71f4102ba93122ada35356dd4341fad (patch) | |
tree | a747476948c9533a8a7439812acd25301ffcd80c /lldb/source/lldb.cpp | |
parent | 0ad1c308ea1ef6be338a60017bb17794bd25b1d2 (diff) | |
download | bcm5719-llvm-db39cdfbb71f4102ba93122ada35356dd4341fad.tar.gz bcm5719-llvm-db39cdfbb71f4102ba93122ada35356dd4341fad.zip |
Fix some bugs from D5988
Summary:
Ed Maste found some problems with the commit in D5988. Address most of these.
While here, also add floating point return handling. This doesn't handle
128-bit long double yet. Since I don't have any system that uses it, I don't
currently have plans to implement it.
Reviewers: emaste
Reviewed By: emaste
Subscribers: emaste, lldb-commits
Differential Revision: http://reviews.llvm.org/D6049
llvm-svn: 220963
Diffstat (limited to 'lldb/source/lldb.cpp')
-rw-r--r-- | lldb/source/lldb.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/source/lldb.cpp b/lldb/source/lldb.cpp index e1de7291f2b..69d8cef9b2e 100644 --- a/lldb/source/lldb.cpp +++ b/lldb/source/lldb.cpp @@ -229,6 +229,7 @@ lldb_private::Terminate () ABIMacOSX_arm::Terminate(); ABIMacOSX_arm64::Terminate(); ABISysV_x86_64::Terminate(); + ABISysV_ppc::Terminate(); ABISysV_ppc64::Terminate(); DisassemblerLLVMC::Terminate(); ObjectContainerBSDArchive::Terminate(); |