We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a035e3a commit ec78d7bCopy full SHA for ec78d7b
compiler/rustc_codegen_ssa/src/mir/mod.rs
@@ -32,7 +32,7 @@ use self::debuginfo::{FunctionDebugContext, PerLocalVarDebugInfo};
32
use self::operand::{OperandRef, OperandValue};
33
use self::place::PlaceRef;
34
35
-const MIN_DANGEROUS_SIZE: u64 = 1024 * 1024 * 1024 * 1; // 1 GB
+const MIN_DANGEROUS_ALLOC_SIZE: u64 = 1024 * 1024 * 1024 * 1; // 1 GB
36
37
// Used for tracking the state of generated basic blocks.
38
enum CachedLlbb<T> {
0 commit comments