#![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, }
#[derive(Debug, Clone, PartialEq, Spanned, Serialize)]
pub struct AllocaType {
pub type_: Type, pub ptr: GeneralOperand, pub size: GeneralOperand, pub immalign: Option<GeneralOperand>, pub span: Span,
}
}
pub use section_0::AllocaType;
pub use section_0::Type as Type0;