diff options
| author | bors <bors@rust-lang.org> | 2020-07-22 19:34:20 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2020-07-22 19:34:20 +0000 |
| commit | bbebe7351fcd29af1eb9a35e315369b15887ea09 (patch) | |
| tree | 1188f2aaead69f89217acaf371bc24ac98a93c11 /src/test/codegen-units | |
| parent | 9e92106d457abd14f82adc29e7f2496861e07916 (diff) | |
| parent | 799d52eff7e96fc339327966b056ab89c061b255 (diff) | |
| download | rust-bbebe7351fcd29af1eb9a35e315369b15887ea09.tar.gz rust-bbebe7351fcd29af1eb9a35e315369b15887ea09.zip | |
Auto merge of #74633 - davidtwco:issue-74614-disable-polymorphisation, r=wesleywiser
Disable polymorphisation Fixes #74614. This PR disables polymorphisation to fix the regression in #74614 after investigation into the issue makes it clear that the fix won't be trivial. ~~I'll file an issue shortly to replace #74614 with the findings so far.~~ #74636 has been filed to track the fix of the underlying regression. r? @eddyb
Diffstat (limited to 'src/test/codegen-units')
3 files changed, 3 insertions, 3 deletions
diff --git a/src/test/codegen-units/item-collection/static-init.rs b/src/test/codegen-units/item-collection/static-init.rs index aebccff01fc..9d79171c4cb 100644 --- a/src/test/codegen-units/item-collection/static-init.rs +++ b/src/test/codegen-units/item-collection/static-init.rs @@ -1,4 +1,4 @@ -// compile-flags:-Zprint-mono-items=eager +// compile-flags:-Zprint-mono-items=eager -Zpolymorphize=on #![feature(start)] diff --git a/src/test/codegen-units/item-collection/trait-method-default-impl.rs b/src/test/codegen-units/item-collection/trait-method-default-impl.rs index abe2d108eae..6cf59fdc396 100644 --- a/src/test/codegen-units/item-collection/trait-method-default-impl.rs +++ b/src/test/codegen-units/item-collection/trait-method-default-impl.rs @@ -1,4 +1,4 @@ -// compile-flags:-Zprint-mono-items=eager +// compile-flags:-Zprint-mono-items=eager -Zpolymorphize=on #![deny(dead_code)] #![feature(start)] diff --git a/src/test/codegen-units/polymorphization/unused_type_parameters.rs b/src/test/codegen-units/polymorphization/unused_type_parameters.rs index dc2ad0559b3..403f68bb170 100644 --- a/src/test/codegen-units/polymorphization/unused_type_parameters.rs +++ b/src/test/codegen-units/polymorphization/unused_type_parameters.rs @@ -1,4 +1,4 @@ -// compile-flags:-Zprint-mono-items=lazy -Copt-level=1 +// compile-flags:-Zpolymorphize=on -Zprint-mono-items=lazy -Copt-level=1 // ignore-tidy-linelength #![crate_type = "rlib"] |
