diff options
Diffstat (limited to 'gold/common.cc')
-rw-r--r-- | gold/common.cc | 11 |
1 files changed, 1 insertions, 10 deletions
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; |