/src/test/codegen-units/partitioning/local-inlining-but-not-all.rs

https://gitlab.com/jianglu/rust · Rust · 54 lines · 24 code · 12 blank · 18 comment · 0 complexity · d84cb5dabb02c2893f10c83c6ded7ea1 MD5 · raw file

  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. // ignore-tidy-linelength
  11. // We specify -Z incremental here because we want to test the partitioning for
  12. // incremental compilation
  13. // compile-flags:-Zprint-mono-items=lazy -Zincremental=tmp/partitioning-tests/local-inlining-but-not-all
  14. // compile-flags:-Zinline-in-all-cgus=no
  15. #![allow(dead_code)]
  16. #![crate_type="lib"]
  17. mod inline {
  18. //~ MONO_ITEM fn local_inlining_but_not_all::inline[0]::inlined_function[0] @@ local_inlining_but_not_all-inline[External]
  19. #[inline]
  20. pub fn inlined_function()
  21. {
  22. }
  23. }
  24. pub mod user1 {
  25. use super::inline;
  26. //~ MONO_ITEM fn local_inlining_but_not_all::user1[0]::foo[0] @@ local_inlining_but_not_all-user1[External]
  27. pub fn foo() {
  28. inline::inlined_function();
  29. }
  30. }
  31. pub mod user2 {
  32. use super::inline;
  33. //~ MONO_ITEM fn local_inlining_but_not_all::user2[0]::bar[0] @@ local_inlining_but_not_all-user2[External]
  34. pub fn bar() {
  35. inline::inlined_function();
  36. }
  37. }
  38. pub mod non_user {
  39. //~ MONO_ITEM fn local_inlining_but_not_all::non_user[0]::baz[0] @@ local_inlining_but_not_all-non_user[External]
  40. pub fn baz() {
  41. }
  42. }