#![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 {
S16, S32, S64, }
#[derive(Debug, Clone, PartialEq, Spanned, Serialize)]
pub struct NegType {
pub type_: Type, pub d: GeneralOperand, pub a: GeneralOperand, pub span: Span,
}
#[derive(Debug, Clone, PartialEq, Spanned, Serialize)]
pub struct NegFtzF32 {
pub ftz: bool, pub f32: (), pub d: GeneralOperand, pub a: GeneralOperand, pub span: Span,
}
#[derive(Debug, Clone, PartialEq, Spanned, Serialize)]
pub struct NegF64 {
pub f64: (), pub d: GeneralOperand, pub a: GeneralOperand, pub span: Span,
}
#[derive(Debug, Clone, PartialEq, Spanned, Serialize)]
pub struct NegFtzF16 {
pub ftz: bool, pub f16: (), pub d: GeneralOperand, pub a: GeneralOperand, pub span: Span,
}
#[derive(Debug, Clone, PartialEq, Spanned, Serialize)]
pub struct NegFtzF16x2 {
pub ftz: bool, pub f16x2: (), pub d: GeneralOperand, pub a: GeneralOperand, pub span: Span,
}
#[derive(Debug, Clone, PartialEq, Spanned, Serialize)]
pub struct NegBf16 {
pub bf16: (), pub d: GeneralOperand, pub a: GeneralOperand, pub span: Span,
}
#[derive(Debug, Clone, PartialEq, Spanned, Serialize)]
pub struct NegBf16x2 {
pub bf16x2: (), pub d: GeneralOperand, pub a: GeneralOperand, pub span: Span,
}
}
pub use section_0::NegBf16;
pub use section_0::NegBf16x2;
pub use section_0::NegF64;
pub use section_0::NegFtzF16;
pub use section_0::NegFtzF16x2;
pub use section_0::NegFtzF32;
pub use section_0::NegType;
pub use section_0::Type as Type0;