1use crate::spec::Target; 2 3pub(crate) fn target() -> Target { 4 let mut target = super::aarch64v8r_unknown_none::target(); 5 target.options.cpu = "cortex-r82".into(); 6 target 7}