Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
tautschnig committed Apr 10, 2024
1 parent 822f007 commit 7e5b381
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions kani-compiler/src/codegen_cprover_gotoc/codegen/place.rs
Original file line number Diff line number Diff line change
Expand Up @@ -644,9 +644,7 @@ impl<'tcx> GotocCtx<'tcx> {
if self.use_thin_pointer_stable(place_ty) {
// For ZST objects rustc does not necessarily generate individual objects.
let need_not_be_unique = match projection.goto_expr.value() {
ExprValue::Symbol { .. } => {
self.is_zst_stable(place_ty)
}
ExprValue::Symbol { .. } => self.is_zst_stable(place_ty),
_ => false,
};
let address_of = projection.goto_expr.address_of();
Expand Down

0 comments on commit 7e5b381

Please sign in to comment.