From 27e28d34c6754b14f1232d131c70e8dd07984e91 Mon Sep 17 00:00:00 2001 From: Nicolas Geoffray Date: Fri, 23 Jan 2015 09:36:52 +0000 Subject: Implicit stack overflow checks and null checks are the norm now. Make the default to true so that unit tests don't need to use the full CompilerOptions constructor. Change-Id: Ieb52235af73dce2fa03f12932e22ebe2294c805b --- compiler/driver/compiler_options.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'compiler/driver/compiler_options.h') diff --git a/compiler/driver/compiler_options.h b/compiler/driver/compiler_options.h index 97699e599c..5466d4596a 100644 --- a/compiler/driver/compiler_options.h +++ b/compiler/driver/compiler_options.h @@ -64,8 +64,8 @@ class CompilerOptions FINAL { include_patch_information_(kDefaultIncludePatchInformation), top_k_profile_threshold_(kDefaultTopKProfileThreshold), include_debug_symbols_(kDefaultIncludeDebugSymbols), - implicit_null_checks_(false), - implicit_so_checks_(false), + implicit_null_checks_(true), + implicit_so_checks_(true), implicit_suspend_checks_(false), compile_pic_(false), verbose_methods_(nullptr), -- cgit v1.2.3-59-g8ed1b