Skip to content
This repository was archived by the owner on Mar 24, 2022. It is now read-only.

Commit 40b9790

Browse files
awortman-fastlyiximeow
authored andcommitted
rustfmt
1 parent eae5189 commit 40b9790

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

lucet-runtime/lucet-runtime-internals/src/context/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ pub(crate) struct GpRegs {
3535
r14: u64,
3636
r15: u64,
3737
pub(crate) rsi: u64,
38-
r8: u64
38+
r8: u64,
3939
}
4040

4141
impl GpRegs {

lucetc/src/compiler.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -253,8 +253,8 @@ impl<'a> Compiler<'a> {
253253
let isa_builder = cpu_features.isa_builder(target)?;
254254
flags_builder.enable("enable_verifier").unwrap();
255255
flags_builder.enable("is_pic").unwrap();
256-
flags_builder.enable("enable_pinned_reg");
257-
flags_builder.enable("use_pinned_reg_as_heap_base");
256+
flags_builder.enable("enable_pinned_reg").unwrap();
257+
flags_builder.enable("use_pinned_reg_as_heap_base").unwrap();
258258
flags_builder.set("opt_level", opt_level.to_flag()).unwrap();
259259
if canonicalize_nans {
260260
flags_builder.enable("enable_nan_canonicalization").unwrap();

0 commit comments

Comments
 (0)