mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-09-19 16:40:38 -09:00
Merge remote-tracking branch
'origin/GP-7150_emteere_PR-9513_CBongo_fix-minstoreloadoffset-setter' (Closes #9513)
This commit is contained in:
@@ -119,13 +119,13 @@ public class ConstantPropagationContextEvaluator extends ContextEvaluatorAdapter
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set maximum speculative memory offset for references
|
* Set minimum offset from the start or end of memory for computed store/load references
|
||||||
*
|
*
|
||||||
* @param minStoreLoadRefAddress maximum address offset
|
* @param minStoreLoadRefAddress minimum address offset
|
||||||
* @return this
|
* @return this
|
||||||
*/
|
*/
|
||||||
public ConstantPropagationContextEvaluator setMinStoreLoadOffset(long minStoreLoadRefAddress) {
|
public ConstantPropagationContextEvaluator setMinStoreLoadOffset(long minStoreLoadRefAddress) {
|
||||||
maxSpeculativeOffset = minStoreLoadRefAddress;
|
minStoreLoadOffset = minStoreLoadRefAddress;
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user