#![allow(unused)]
use crate::r#type::common::*;
pub mod section_0 {
use crate::Spanned;
use crate::parser::Span;
use crate::r#type::common::*;
use serde::Serialize;
#[derive(Debug, Clone, PartialEq, Serialize)]
pub enum Type {
U32, U64, S32, S64, }
#[derive(Debug, Clone, PartialEq, Spanned, Serialize)]
pub struct BfindType {
pub type_: Type, pub d: GeneralOperand, pub a: GeneralOperand, pub span: Span,
}
#[derive(Debug, Clone, PartialEq, Spanned, Serialize)]
pub struct BfindShiftamtType {
pub shiftamt: (), pub type_: Type, pub d: GeneralOperand, pub a: GeneralOperand, pub span: Span,
}
}
pub use section_0::BfindShiftamtType;
pub use section_0::BfindType;
pub use section_0::Type as Type0;