]> git.proxmox.com Git - rustc.git/blob - src/test/debuginfo/borrowed-enum.rs
Merge tag 'upstream-tar/1.0.0_0alpha'
[rustc.git] / src / test / debuginfo / borrowed-enum.rs
1 // Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // ignore-tidy-linelength
12 // ignore-android: FIXME(#10381)
13 // min-lldb-version: 310
14
15 // compile-flags:-g
16
17 // === GDB TESTS ===================================================================================
18
19 // gdb-command:run
20
21 // gdb-command:print *the_a_ref
22 // gdb-check:$1 = {{RUST$ENUM$DISR = TheA, x = 0, y = 8970181431921507452}, {RUST$ENUM$DISR = TheA, 0, 2088533116, 2088533116}}
23
24 // gdb-command:print *the_b_ref
25 // gdb-check:$2 = {{RUST$ENUM$DISR = TheB, x = 0, y = 1229782938247303441}, {RUST$ENUM$DISR = TheB, 0, 286331153, 286331153}}
26
27 // gdb-command:print *univariant_ref
28 // gdb-check:$3 = {{4820353753753434}}
29
30
31 // === LLDB TESTS ==================================================================================
32
33 // lldb-command:run
34
35 // lldb-command:print *the_a_ref
36 // lldb-check:[...]$0 = TheA { x: 0, y: 8970181431921507452 }
37 // lldb-command:print *the_b_ref
38 // lldb-check:[...]$1 = TheB(0, 286331153, 286331153)
39 // lldb-command:print *univariant_ref
40 // lldb-check:[...]$2 = TheOnlyCase(4820353753753434)
41
42 #![allow(unused_variables)]
43 #![omit_gdb_pretty_printer_section]
44
45 // The first element is to ensure proper alignment, irrespective of the machines word size. Since
46 // the size of the discriminant value is machine dependent, this has be taken into account when
47 // datatype layout should be predictable as in this case.
48 enum ABC {
49 TheA { x: i64, y: i64 },
50 TheB (i64, i32, i32),
51 }
52
53 // This is a special case since it does not have the implicit discriminant field.
54 enum Univariant {
55 TheOnlyCase(i64)
56 }
57
58 fn main() {
59
60 // 0b0111110001111100011111000111110001111100011111000111110001111100 = 8970181431921507452
61 // 0b01111100011111000111110001111100 = 2088533116
62 // 0b0111110001111100 = 31868
63 // 0b01111100 = 124
64 let the_a = ABC::TheA { x: 0, y: 8970181431921507452 };
65 let the_a_ref: &ABC = &the_a;
66
67 // 0b0001000100010001000100010001000100010001000100010001000100010001 = 1229782938247303441
68 // 0b00010001000100010001000100010001 = 286331153
69 // 0b0001000100010001 = 4369
70 // 0b00010001 = 17
71 let the_b = ABC::TheB (0, 286331153, 286331153);
72 let the_b_ref: &ABC = &the_b;
73
74 let univariant = Univariant::TheOnlyCase(4820353753753434);
75 let univariant_ref: &Univariant = &univariant;
76
77 zzz(); // #break
78 }
79
80 fn zzz() {()}