mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2024-11-10 06:02:09 +00:00
fix bug in pcode's SequenceNumber.java
This commit is contained in:
parent
8ee5734927
commit
daf1f28264
@ -119,10 +119,10 @@ public class SequenceNumber implements Comparable<SequenceNumber> {
|
||||
if (val != 0) {
|
||||
return val;
|
||||
}
|
||||
if (uniq < sq.uniq) {
|
||||
if (order < sq.order) {
|
||||
return -1;
|
||||
}
|
||||
if (sq.uniq < uniq) {
|
||||
if (sq.order < order) {
|
||||
return 1;
|
||||
}
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user