From 353501bb9c82f686cc2889fad42edff1dd29a97f Mon Sep 17 00:00:00 2001 From: abhi Date: Mon, 25 Jul 2016 14:34:58 +0530 Subject: [PATCH] Remove no_stack_check (#34915) Part of fixes for #34915 --- src/librustc/session/config.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/librustc/session/config.rs b/src/librustc/session/config.rs index a0c2416d24cff..6baafcc78fd80 100644 --- a/src/librustc/session/config.rs +++ b/src/librustc/session/config.rs @@ -637,8 +637,6 @@ options! {CodegenOptions, CodegenSetter, basic_codegen_options, "divide crate into N units to optimize in parallel"), remark: Passes = (SomePasses(Vec::new()), parse_passes, "print remarks for these optimization passes (space separated, or \"all\")"), - no_stack_check: bool = (false, parse_bool, - "disable checks for stack exhaustion (a memory-safety hazard!)"), debuginfo: Option = (None, parse_opt_uint, "debug info emission level, 0 = no debug info, 1 = line tables only, \ 2 = full debug info with variable and type information"),