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