projects
/
external
/
binutils.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d98bc25
)
Correct last patch.
author
Ian Lance Taylor
<ian@airs.com>
Tue, 6 May 2008 05:54:21 +0000
(
05:54
+0000)
committer
Ian Lance Taylor
<ian@airs.com>
Tue, 6 May 2008 05:54:21 +0000
(
05:54
+0000)
gold/output.h
patch
|
blob
|
history
diff --git
a/gold/output.h
b/gold/output.h
index
89c6eeb
..
6c7dc39
100644
(file)
--- a/
gold/output.h
+++ b/
gold/output.h
@@
-1011,9
+1011,9
@@
class Output_reloc<elfcpp::SHT_RELA, dynamic, size, big_endian>
{
int i = this->rel_.compare(r2.rel_);
if (i < 0)
- return false;
- else if (i > 0)
return true;
+ else if (i > 0)
+ return false;
else
return this->addend_ < r2.addend_;
}