ptx_parser/type/instruction/
bra.rs1#![allow(unused)]
7use crate::r#type::common::*;
8
9pub mod section_0 {
10 use crate::Spanned;
11 use crate::parser::Span;
12 use crate::r#type::common::*;
13
14 use serde::Serialize;
15
16 #[derive(Debug, Clone, PartialEq, Spanned, Serialize)]
17 pub struct BraUni {
18 pub uni: bool, pub tgt: GeneralOperand, pub span: Span,
21 }
22
23 #[derive(Debug, Clone, PartialEq, Spanned, Serialize)]
24 pub struct BraUni1 {
25 pub uni: bool, pub tgt: GeneralOperand, pub span: Span,
28 }
29}
30
31pub use section_0::BraUni;
34pub use section_0::BraUni1;