projects
/
binutils-gdb.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 89c6eeb4487affa4a085fa97b9ad72fc083028a3..6c7dc394ef434a813b8391d274c3a2e0a0037862 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_;
}