about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorTshepang Mbambo <tshepang@gmail.com>2022-07-15 00:44:47 +0200
committerTshepang Mbambo <tshepang@gmail.com>2022-07-15 13:24:50 +0200
commit950191c7c177928c728171483090da9155f2cc7d (patch)
tree9a501cb8547a4fa58e27c6b9299b69e7df61783e /src/doc/rustc-dev-guide
parent0506cdb667038d638033f0a20752af00d047eab0 (diff)
downloadrust-950191c7c177928c728171483090da9155f2cc7d.tar.gz
rust-950191c7c177928c728171483090da9155f2cc7d.zip
address review comment
https://github.com/rust-lang/rustc-dev-guide/pull/1392#discussion_r921560851
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/profiling.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/rustc-dev-guide/src/profiling.md b/src/doc/rustc-dev-guide/src/profiling.md
index e4148e68eb0..ada497d88a2 100644
--- a/src/doc/rustc-dev-guide/src/profiling.md
+++ b/src/doc/rustc-dev-guide/src/profiling.md
@@ -109,5 +109,5 @@ The llvm-lines output is affected by several options.
 MIR optimizations have little impact. Compared to the default `RUSTFLAGS="-Z
 mir-opt-level=1"`, level 0 adds 0.3GB and level 2 removes 0.2GB.
 As of <!-- date: 2022-07 --> July 2022,
-inlining currently only happens in LLVM,
-but this might change in the future.
+inlining happens in LLVM and GCC codegen backends,
+missing only in the Cranelift one.