aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/fib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/fib.rs')
-rw-r--r--examples/fib.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/examples/fib.rs b/examples/fib.rs
index c38589f..573b27c 100644
--- a/examples/fib.rs
+++ b/examples/fib.rs
@@ -66,9 +66,8 @@ fn main() {
let mut rt = Runtime::new();
let fib = unsafe { rt.add_code::<extern "C" fn(u64) -> u64>(asm.into_code()) };
- // Write out JIT code for visualization.
- // Disassemble for example with `ndisasm -b 64 jit.asm`.
- rt.dump();
+ // Disassemble JIT code and write to stdout.
+ rt.disasm();
for n in 0..15 {
let fib_jit = fib(n);