diff options
author | Cary Coutant <ccoutant@google.com> | 2010-08-18 18:33:05 +0000 |
---|---|---|
committer | Cary Coutant <ccoutant@google.com> | 2010-08-18 18:33:05 +0000 |
commit | 55455f8927ff9d4703d844163ef51b6e26cdef9e (patch) | |
tree | 0da73162dae3010439340d68b826da71caaa57fa /gold | |
parent | 66b73624e86af015d447b3653a45593bb5f733ae (diff) | |
download | gdb-55455f8927ff9d4703d844163ef51b6e26cdef9e.zip gdb-55455f8927ff9d4703d844163ef51b6e26cdef9e.tar.gz gdb-55455f8927ff9d4703d844163ef51b6e26cdef9e.tar.bz2 |
* common.cc (Sort_commons::operator()): Remove unnecessary code.
Diffstat (limited to 'gold')
-rw-r--r-- | gold/ChangeLog | 4 | ||||
-rw-r--r-- | gold/common.cc | 11 |
2 files changed, 5 insertions, 10 deletions
diff --git a/gold/ChangeLog b/gold/ChangeLog index 9eb928d..6e04f6e 100644 --- a/gold/ChangeLog +++ b/gold/ChangeLog @@ -1,3 +1,7 @@ +2010-08-12 Cary Coutant <ccoutant@google.com> + + * common.cc (Sort_commons::operator()): Remove unnecessary code. + 2010-08-13 Ian Lance Taylor <iant@google.com> * testsuite/incremental_test_1.c: Add prototype to avoid warning. diff --git a/gold/common.cc b/gold/common.cc index d5046e5..8d122fa 100644 --- a/gold/common.cc +++ b/gold/common.cc @@ -88,16 +88,7 @@ bool Sort_commons<size>::operator()(const Symbol* pa, const Symbol* pb) const { if (pa == NULL) - { - if (pb == NULL) - { - // Stabilize sort. The order really doesn't matter, because - // these entries will be discarded, but we want to return - // the same result every time we compare pa and pb. - return pa < pb; - } - return false; - } + return false; if (pb == NULL) return true; |