diff options
| author | Tshepang Mbambo <tshepang@gmail.com> | 2025-05-08 09:18:01 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-08 09:18:01 +0200 |
| commit | b2de3f4611c1d4ab8f3c1e703ddaf46c5ad52019 (patch) | |
| tree | 19aff75dae78d83701cf7571aa9a65a6088154eb /tests/incremental/thinlto | |
| parent | bf06eaf7a2e8ad08c23a3d8da1255cdcc4174c55 (diff) | |
| parent | 659f0b606d9a81e170ede192a5d6da5a66f30ce2 (diff) | |
| download | rust-b2de3f4611c1d4ab8f3c1e703ddaf46c5ad52019.tar.gz rust-b2de3f4611c1d4ab8f3c1e703ddaf46c5ad52019.zip | |
Merge pull request #2374 from rust-lang/rustc-pull
Rustc pull update
Diffstat (limited to 'tests/incremental/thinlto')
| -rw-r--r-- | tests/incremental/thinlto/cgu_keeps_identical_fn.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/incremental/thinlto/cgu_keeps_identical_fn.rs b/tests/incremental/thinlto/cgu_keeps_identical_fn.rs index 5751759223b..d124a3498c4 100644 --- a/tests/incremental/thinlto/cgu_keeps_identical_fn.rs +++ b/tests/incremental/thinlto/cgu_keeps_identical_fn.rs @@ -33,12 +33,12 @@ mod foo { // Trivial functions like this one are imported very reliably by ThinLTO. - #[cfg(any(cfail1, cfail4))] + #[cfg(cfail1)] pub fn inlined_fn() -> u32 { 1234 } - #[cfg(not(any(cfail1, cfail4)))] + #[cfg(not(cfail1))] pub fn inlined_fn() -> u32 { 1234 } |
