Python APIs for function-level lifting #1201
Annotations
4 errors and 1 warning
|
cargo clippy
Error: Clippy has exited with exit code 101
|
|
unneeded `return` statement:
rust/src/architecture.rs#L1515
error: unneeded `return` statement
--> rust/src/architecture.rs:1515:9
|
1515 | return custom_arch.lift_function(function, &mut context);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.91.0/index.html#needless_return
help: remove `return`
|
1515 - return custom_arch.lift_function(function, &mut context);
1515 + custom_arch.lift_function(function, &mut context)
|
|
|
unneeded `return` statement:
rust/src/architecture.rs#L782
error: unneeded `return` statement
--> rust/src/architecture.rs:782:13
|
782 | return BNArchitectureLiftFunction(self.handle, function.handle, context.handle);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.91.0/index.html#needless_return
help: remove `return`
|
782 - return BNArchitectureLiftFunction(self.handle, function.handle, context.handle);
782 + BNArchitectureLiftFunction(self.handle, function.handle, context.handle)
|
|
|
unneeded `return` statement:
rust/src/architecture.rs#L253
error: unneeded `return` statement
--> rust/src/architecture.rs:253:13
|
253 | return BNArchitectureDefaultLiftFunction(function.handle, context.handle);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.91.0/index.html#needless_return
= note: `-D clippy::needless-return` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::needless_return)]`
help: remove `return`
|
253 - return BNArchitectureDefaultLiftFunction(function.handle, context.handle);
253 + BNArchitectureDefaultLiftFunction(function.handle, context.handle)
|
|
|
licensing
New version for cargo-about available: 0.8.4
|
Artifacts
Produced during runtime
| Name | Size | Digest | |
|---|---|---|---|
|
license
|
26.5 KB |
sha256:66d151c722808a05aa5d7e7c6f1c6c684a8fd553523e4506830a412eec846bbc
|
|