blob: 29343bee4c300a5e115d899567a431f0248a76af [file] [log] [blame]
use crate::common::intrinsic_helpers::IntrinsicType;
use std::ops::{Deref, DerefMut};
#[derive(Debug, Clone, PartialEq)]
pub struct ArmIntrinsicType {
pub data: IntrinsicType,
pub target: String,
}
impl Deref for ArmIntrinsicType {
type Target = IntrinsicType;
fn deref(&self) -> &Self::Target {
&self.data
}
}
impl DerefMut for ArmIntrinsicType {
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.data
}
}