Perform function-level lifting and inlining from architecture plugins #1202
Annotations
4 errors and 1 warning
|
cargo clippy
Error: Clippy has exited with exit code 101
|
|
unneeded `return` statement:
rust/src/architecture.rs#L1489
error: unneeded `return` statement
--> rust/src/architecture.rs:1489:9
|
1489 | 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`
|
1489 - return custom_arch.lift_function(function, &mut context);
1489 + custom_arch.lift_function(function, &mut context)
|
|
|
unneeded `return` statement:
rust/src/architecture.rs#L756
error: unneeded `return` statement
--> rust/src/architecture.rs:756:13
|
756 | 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`
|
756 - return BNArchitectureLiftFunction(self.handle, function.handle, context.handle);
756 + BNArchitectureLiftFunction(self.handle, function.handle, context.handle)
|
|
|
unneeded `return` statement:
rust/src/architecture.rs#L227
error: unneeded `return` statement
--> rust/src/architecture.rs:227:13
|
227 | 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`
|
227 - return BNArchitectureDefaultLiftFunction(function.handle, context.handle);
227 + BNArchitectureDefaultLiftFunction(function.handle, context.handle)
|
|
|
licensing
New version for cargo-about available: 0.8.4
|
Artifacts
Produced during runtime
| Name | Size | Digest | |
|---|---|---|---|
|
license
|
26.7 KB |
sha256:b84fccbac13c3bafcf070fbb671aa0cc0328fb23e33a77243c63c55778144f73
|
|