mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 18:29:37 +02:00
Merge remote-tracking branch 'origin/GP-2466_caheckman_PR-4450_jpleasu_fix_high_variable_compare'
This commit is contained in:
commit
f40861413b
1 changed files with 1 additions and 1 deletions
|
@ -157,7 +157,7 @@ inline bool Merge::compareHighByBlock(const HighVariable *a,const HighVariable *
|
|||
PcodeOp *def1 = v1->getDef();
|
||||
PcodeOp *def2 = v2->getDef();
|
||||
if ( def1 == (PcodeOp *) 0 ) {
|
||||
return true;
|
||||
return def2 != (PcodeOp *) 0;
|
||||
}
|
||||
else if ( def2 == (PcodeOp *) 0 ) {
|
||||
return false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue