Skip to content

Commit

Permalink
Rollup merge of #87457 - devnexen:fbsd_remove_workaround, r=petrochenkov
Browse files Browse the repository at this point in the history
freebsd remove compiler workaround.

related issue #43575
  • Loading branch information
GuillaumeGomez authored Jul 26, 2021
2 parents fc0b484 + 76d1453 commit e3c6cd2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions compiler/rustc_target/src/spec/freebsd_base.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use crate::spec::{FramePointer, RelroLevel, TargetOptions};
use crate::spec::{RelroLevel, TargetOptions};

pub fn opts() -> TargetOptions {
TargetOptions {
Expand All @@ -8,7 +8,6 @@ pub fn opts() -> TargetOptions {
families: vec!["unix".to_string()],
has_rpath: true,
position_independent_executables: true,
frame_pointer: FramePointer::Always, // FIXME 43575: should be MayOmit...
relro_level: RelroLevel::Full,
abi_return_struct_as_int: true,
dwarf_version: Some(2),
Expand Down

0 comments on commit e3c6cd2

Please sign in to comment.