We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80d1ff3 commit 2ba61b5Copy full SHA for 2ba61b5
jingle/src/modeling/machine/cpu/concrete.rs
@@ -78,6 +78,14 @@ impl From<PcodeMachineAddress> for ConcretePcodeAddress {
78
}
79
80
81
+impl From<&PcodeMachineAddress> for ConcretePcodeAddress {
82
+ fn from(value: &PcodeMachineAddress) -> Self {
83
+ Self {
84
+ machine: *value,
85
+ pcode: 0,
86
+ }
87
88
+}
89
/// Simple in-function transition handling, transitioning from one address to the
90
/// next per uninterpreted/unanalyzed pcode. The implementation is used for
91
/// the initial exploration of a CFG. The analyses built around this have
0 commit comments