summaryrefslogtreecommitdiff
path: root/rust/src/hlil
diff options
context:
space:
mode:
Diffstat (limited to 'rust/src/hlil')
-rw-r--r--rust/src/hlil/instruction.rs2
-rw-r--r--rust/src/hlil/lift.rs2
-rw-r--r--rust/src/hlil/operation.rs2
3 files changed, 3 insertions, 3 deletions
diff --git a/rust/src/hlil/instruction.rs b/rust/src/hlil/instruction.rs
index 6df49045..159652f1 100644
--- a/rust/src/hlil/instruction.rs
+++ b/rust/src/hlil/instruction.rs
@@ -744,7 +744,7 @@ impl HighLevelILInstruction {
Const(op) => Lifted::Const(op),
ConstPtr(op) => Lifted::ConstPtr(op),
Import(op) => Lifted::Import(op),
- ConstData(op) => Lifted::ConstData(LiftedConstantData {
+ ConstData(op) => Lifted::ConstData(LiftedConstData {
constant_data: ConstantData::new(
self.function.get_function(),
RegisterValue {
diff --git a/rust/src/hlil/lift.rs b/rust/src/hlil/lift.rs
index e993bcae..f8db34c5 100644
--- a/rust/src/hlil/lift.rs
+++ b/rust/src/hlil/lift.rs
@@ -99,7 +99,7 @@ pub enum HighLevelILLiftedInstructionKind {
Const(Const),
ConstPtr(Const),
Import(Const),
- ConstData(LiftedConstantData),
+ ConstData(LiftedConstData),
Deref(LiftedUnaryOp),
AddressOf(LiftedUnaryOp),
Neg(LiftedUnaryOp),
diff --git a/rust/src/hlil/operation.rs b/rust/src/hlil/operation.rs
index a98a7d32..965d9517 100644
--- a/rust/src/hlil/operation.rs
+++ b/rust/src/hlil/operation.rs
@@ -198,7 +198,7 @@ pub struct ConstData {
pub size: usize,
}
#[derive(Clone, Debug, PartialEq)]
-pub struct LiftedConstantData {
+pub struct LiftedConstData {
pub constant_data: ConstantData,
}