]> git.proxmox.com Git - rustc.git/blob - src/test/codegen-units/partitioning/local-transitive-inlining.rs
New upstream version 1.13.0+dfsg1
[rustc.git] / src / test / codegen-units / partitioning / local-transitive-inlining.rs
1 // Copyright 2016 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 // We specify -Z incremental here because we want to test the partitioning for
13 // incremental compilation
14 // compile-flags:-Zprint-trans-items=lazy -Zincremental=tmp/partitioning-tests/local-transitive-inlining
15
16 #![allow(dead_code)]
17 #![crate_type="lib"]
18
19 mod inline {
20
21 //~ TRANS_ITEM fn local_transitive_inlining::inline[0]::inlined_function[0] @@ local_transitive_inlining-indirect_user[Internal]
22 #[inline(always)]
23 pub fn inlined_function()
24 {
25
26 }
27 }
28
29 mod direct_user {
30 use super::inline;
31
32 //~ TRANS_ITEM fn local_transitive_inlining::direct_user[0]::foo[0] @@ local_transitive_inlining-indirect_user[Internal]
33 #[inline(always)]
34 pub fn foo() {
35 inline::inlined_function();
36 }
37 }
38
39 mod indirect_user {
40 use super::direct_user;
41
42 //~ TRANS_ITEM fn local_transitive_inlining::indirect_user[0]::bar[0] @@ local_transitive_inlining-indirect_user[External]
43 fn bar() {
44 direct_user::foo();
45 }
46 }
47
48 mod non_user {
49
50 //~ TRANS_ITEM fn local_transitive_inlining::non_user[0]::baz[0] @@ local_transitive_inlining-non_user[External]
51 fn baz() {
52
53 }
54 }