We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63bb951 commit 2741dd8Copy full SHA for 2741dd8
src/test/codegen/mem-replace-direct-memcpy.rs
@@ -1,3 +1,15 @@
1
+// ignore-test
2
+
3
+// WHY IS THIS TEST BEING IGNORED:
4
+//
5
+// This test depends on characteristics of how the stdlib was compiled,
6
+// namely that sufficient inlining occurred to ensure that the call to
7
+// `std::mem::replace` boils down to just two calls of `llvm.memcpy`.
8
9
+// But the MIR inlining policy is in flux as of 1.64-beta, and the intermittent
10
+// breakage of this test that results is causing problems for people trying to
11
+// do development.
12
13
// This test ensures that `mem::replace::<T>` only ever calls `@llvm.memcpy`
14
// with `size_of::<T>()` as the size, and never goes through any wrapper that
15
// may e.g. multiply `size_of::<T>()` with a variable "count" (which is only
0 commit comments