diff options
author | Yunlian Jiang <yunlian@google.com> | 2016-05-17 20:33:43 +0000 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2016-05-17 20:33:43 +0000 |
commit | 237115ae1298fde679c81e1ba92a34e20344680f (patch) | |
tree | 3fc94ba4a94bacfa87f11131c74f6278d5a192a1 | |
parent | 9adf19b554748ec5150dfac4795890e5958006a9 (diff) | |
parent | cc160c2199d6d3d8b64dcc578ece5eb5e75a4b80 (diff) | |
download | toolchain_binutils-237115ae1298fde679c81e1ba92a34e20344680f.zip toolchain_binutils-237115ae1298fde679c81e1ba92a34e20344680f.tar.gz toolchain_binutils-237115ae1298fde679c81e1ba92a34e20344680f.tar.bz2 |
GOLD/DWP: exit without segfault if the binary is not built with debug fission. am: 21efffa54e am: 881d3cd754
am: cc160c2199
* commit 'cc160c2199d6d3d8b64dcc578ece5eb5e75a4b80':
GOLD/DWP: exit without segfault if the binary is not built with debug fission.
Change-Id: I7d0c1206db80741414fdb7e4c5b21c31e42bebd9
-rw-r--r-- | binutils-2.25/gold/dwp.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/binutils-2.25/gold/dwp.cc b/binutils-2.25/gold/dwp.cc index 121f37b..9eef68a 100644 --- a/binutils-2.25/gold/dwp.cc +++ b/binutils-2.25/gold/dwp.cc @@ -2427,6 +2427,10 @@ main(int argc, char** argv) if (exe_filename == NULL && files.empty()) gold_fatal(_("no input files and no executable specified")); + // If there are no DWO files, there is nothing to do. + if (files.empty()) + return EXIT_SUCCESS; + if (verify_only) { // Get list of DWO files in the DWP file and compare with |