| 1 | pub const @"void" = 0x0; |
| 2 | pub const address = 0x1; |
| 3 | pub const boolean = 0x2; |
| 4 | pub const complex_float = 0x3; |
| 5 | pub const float = 0x4; |
| 6 | pub const signed = 0x5; |
| 7 | pub const signed_char = 0x6; |
| 8 | pub const unsigned = 0x7; |
| 9 | pub const unsigned_char = 0x8; |
| 10 | |
| 11 | // DWARF 3. |
| 12 | pub const imaginary_float = 0x9; |
| 13 | pub const packed_decimal = 0xa; |
| 14 | pub const numeric_string = 0xb; |
| 15 | pub const edited = 0xc; |
| 16 | pub const signed_fixed = 0xd; |
| 17 | pub const unsigned_fixed = 0xe; |
| 18 | pub const decimal_float = 0xf; |
| 19 | |
| 20 | // DWARF 4. |
| 21 | pub const UTF = 0x10; |
| 22 | |
| 23 | // DWARF 5. |
| 24 | pub const UCS = 0x11; |
| 25 | pub const ASCII = 0x12; |
| 26 | |
| 27 | pub const lo_user = 0x80; |
| 28 | pub const hi_user = 0xff; |
| 29 | |
| 30 | // HP extensions. |
| 31 | pub const HP_float80 = 0x80; // Floating-point (80 bit). |
| 32 | pub const HP_complex_float80 = 0x81; // Complex floating-point (80 bit). |
| 33 | pub const HP_float128 = 0x82; // Floating-point (128 bit). |
| 34 | pub const HP_complex_float128 = 0x83; // Complex fp (128 bit). |
| 35 | pub const HP_floathpintel = 0x84; // Floating-point (82 bit IA64). |
| 36 | pub const HP_imaginary_float80 = 0x85; |
| 37 | pub const HP_imaginary_float128 = 0x86; |
| 38 | pub const HP_VAX_float = 0x88; // F or G floating. |
| 39 | pub const HP_VAX_float_d = 0x89; // D floating. |
| 40 | pub const HP_packed_decimal = 0x8a; // Cobol. |
| 41 | pub const HP_zoned_decimal = 0x8b; // Cobol. |
| 42 | pub const HP_edited = 0x8c; // Cobol. |
| 43 | pub const HP_signed_fixed = 0x8d; // Cobol. |
| 44 | pub const HP_unsigned_fixed = 0x8e; // Cobol. |
| 45 | pub const HP_VAX_complex_float = 0x8f; // F or G floating complex. |
| 46 | pub const HP_VAX_complex_float_d = 0x90; // D floating complex. |