]> git.lizzy.rs Git - rust.git/blob - src/test/debuginfo/no-debug-attribute.rs
Auto merge of #33034 - tbu-:pr_doc_mutex_lock, r=nagisa
[rust.git] / src / test / debuginfo / no-debug-attribute.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-lldb
12
13 // compile-flags:-g
14
15 // gdb-command:run
16
17 // gdb-command:info locals
18 // gdb-check:No locals.
19 // gdb-command:continue
20
21 // gdb-command:info locals
22 // gdb-check:abc = 10
23 // gdb-command:continue
24
25 #![allow(unused_variables)]
26 #![feature(no_debug)]
27 #![feature(omit_gdb_pretty_printer_section)]
28 #![omit_gdb_pretty_printer_section]
29
30 #[inline(never)]
31 fn id<T>(x: T) -> T {x}
32
33 fn function_with_debuginfo() {
34     let abc = 10_usize;
35     id(abc); // #break
36 }
37
38 #[no_debug]
39 fn function_without_debuginfo() {
40     let abc = -57i32;
41     id(abc); // #break
42 }
43
44 fn main() {
45     function_without_debuginfo();
46     function_with_debuginfo();
47 }