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