From 733cda47c2afcaacd63e5ad285bd6a512c550c41 Mon Sep 17 00:00:00 2001 From: rubenasplund <ruben.asplund@hotmail.com> Date: Thu, 17 Dec 2020 16:32:06 +0100 Subject: [PATCH] get_sign.rs DONE --- cargo_klee_examples/examples/get_sign.rs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/cargo_klee_examples/examples/get_sign.rs b/cargo_klee_examples/examples/get_sign.rs index 3909b24..a0f1007 100644 --- a/cargo_klee_examples/examples/get_sign.rs +++ b/cargo_klee_examples/examples/get_sign.rs @@ -91,7 +91,11 @@ fn main() { // Try to follow the `klee-analysis` feature. // What modules in `klee-sys` does this feature enable? // -// [your answer here] +// [ +// mod lib_klee_analysis; +// pub mod ll; // low level bindings +// pub use lib_klee_analysis::*; // re-export functions and macros +// ] // // Have a look at the source code of `cargo klee`. // (The actual sub-command is in the folder `cargo-klee`.) @@ -99,7 +103,7 @@ fn main() { // Try to figure out how the correct `.ll` file is determined. // Which one will it pick, and why? // -// [your answer here] +// [It will pick up the latest modified .ll file.] // // Actually this is one of the "bad seeds" in the internal design. // Seems there is no "stable" way of controlling/retrieving the "metadata" -- GitLab