Revert "Bump solana_rbpf to version v0.2.14 (#18869)"

This reverts commit 9d66458a40.
This commit is contained in:
Trent Nelson
2021-12-13 08:48:38 -07:00
committed by Tao Zhu
parent 4a186c5834
commit cc75f576e2
10 changed files with 212 additions and 273 deletions

View File

@@ -205,8 +205,8 @@ native machine code before execting it in the virtual machine.",
.unwrap();
if matches.is_present("verify") {
let text_bytes = executable.get_text_bytes().1;
check(text_bytes, &config).unwrap();
let (_, elf_bytes) = executable.get_text_bytes().unwrap();
check(elf_bytes).unwrap();
}
executable.jit_compile().unwrap();
let analysis = Analysis::from_executable(executable.as_ref());