Skip to content
Snippets Groups Projects
Commit d9822a3f authored by Ruben Asplund's avatar Ruben Asplund
Browse files

get_sign.rs DONE

parent f9449edc
Branches
No related tags found
No related merge requests found
...@@ -91,7 +91,11 @@ fn main() { ...@@ -91,7 +91,11 @@ fn main() {
// Try to follow the `klee-analysis` feature. // Try to follow the `klee-analysis` feature.
// What modules in `klee-sys` does this feature enable? // 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`. // Have a look at the source code of `cargo klee`.
// (The actual sub-command is in the folder `cargo-klee`.) // (The actual sub-command is in the folder `cargo-klee`.)
...@@ -99,7 +103,7 @@ fn main() { ...@@ -99,7 +103,7 @@ fn main() {
// Try to figure out how the correct `.ll` file is determined. // Try to figure out how the correct `.ll` file is determined.
// Which one will it pick, and why? // 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. // Actually this is one of the "bad seeds" in the internal design.
// Seems there is no "stable" way of controlling/retrieving the "metadata" // Seems there is no "stable" way of controlling/retrieving the "metadata"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment