-
-
Notifications
You must be signed in to change notification settings - Fork 324
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update LibAFL concolic #1634
Update LibAFL concolic #1634
Conversation
@@ -204,6 +205,7 @@ impl<R: Read> MessageFileReader<R> { | |||
} | |||
} | |||
SymExpr::Call { .. } | SymExpr::Return { .. } | SymExpr::BasicBlock { .. } => {} | |||
SymExpr::Ite { .. } => todo!(), // I don't know what i should put here.. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do you know what i should put here?
@julihoh
i don't know what to do for this "Ite"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
something like this:
SymExpr::Ite { cond, a, b } => {
*cond = self.make_absolute(*cond);
*a = self.make_absolute(*a);
*b = self.make_absolute(*b);
self.current_id += 1;
}
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok thanks 👍
following AFLplusplus/symcc#8 AFLplusplus/symcc#7