]> git.lizzy.rs Git - rust.git/blob - src/test/debuginfo/extern-c-fn.rs
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / debuginfo / extern-c-fn.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 // min-lldb-version: 310
12
13 // compile-flags:-g
14
15 // === GDB TESTS ===================================================================================
16 // gdb-command:run
17
18 // gdb-command:print s
19 // gdbg-check:$1 = [...]"abcd"
20 // gdbr-check:$1 = [...]"abcd\000"
21 // gdb-command:print len
22 // gdb-check:$2 = 20
23 // gdb-command:print local0
24 // gdb-check:$3 = 19
25 // gdb-command:print local1
26 // gdb-check:$4 = true
27 // gdb-command:print local2
28 // gdb-check:$5 = 20.5
29
30 // gdb-command:continue
31
32 // === LLDB TESTS ==================================================================================
33 // lldb-command:run
34
35 // lldb-command:print len
36 // lldb-check:[...]$0 = 20
37 // lldb-command:print local0
38 // lldb-check:[...]$1 = 19
39 // lldb-command:print local1
40 // lldb-check:[...]$2 = true
41 // lldb-command:print local2
42 // lldb-check:[...]$3 = 20.5
43
44 // lldb-command:continue
45
46 #![allow(unused_variables)]
47 #![allow(dead_code)]
48 #![feature(omit_gdb_pretty_printer_section)]
49 #![omit_gdb_pretty_printer_section]
50
51
52 #[no_mangle]
53 pub unsafe extern "C" fn fn_with_c_abi(s: *const u8, len: i32) -> i32 {
54     let local0 = len - 1;
55     let local1 = len > 2;
56     let local2 = (len as f64) + 0.5;
57
58     zzz(); // #break
59
60     return 0;
61 }
62
63 fn main() {
64     unsafe {
65         fn_with_c_abi(b"abcd\0".as_ptr(), 20);
66     }
67 }
68
69 #[inline(never)]
70 fn zzz() {()}