We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a542344 commit 7ee8972Copy full SHA for 7ee8972
compiler/rustc_metadata/src/rmeta/decoder.rs
@@ -603,6 +603,9 @@ impl MetadataBlob {
603
// panicking if the computed hash is not equal to
604
// the original hash stored in the file.
605
fn check_hash(&self, filename: &Path) {
606
+ if true {
607
+ return;
608
+ }
609
// We store our 32-byte (256-bit) SHA256 hash at
610
// the end of the file
611
let hash_offset = self.raw_bytes().len() - 32;
0 commit comments