diff options
author | Joey Gouly <joey.gouly@arm.com> | 2012-11-23 10:39:49 +0000 |
---|---|---|
committer | Joey Gouly <joey.gouly@arm.com> | 2012-11-23 10:39:49 +0000 |
commit | ebc59d5eb4087f93244190920150a64670abe5e1 (patch) | |
tree | f030367c4d696489c3f7f8735ad8f337df039479 /clang/lib/Frontend/CompilerInvocation.cpp | |
parent | aac36b345a27b0f939fe3d7c242defa53ccd16c0 (diff) | |
download | bcm5719-llvm-ebc59d5eb4087f93244190920150a64670abe5e1.tar.gz bcm5719-llvm-ebc59d5eb4087f93244190920150a64670abe5e1.zip |
PR14306: Move -fbounds-checking to -fsanitize=bounds.
llvm-svn: 168510
Diffstat (limited to 'clang/lib/Frontend/CompilerInvocation.cpp')
-rw-r--r-- | clang/lib/Frontend/CompilerInvocation.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/clang/lib/Frontend/CompilerInvocation.cpp b/clang/lib/Frontend/CompilerInvocation.cpp index 2e8ae638317..9a80b1f3b36 100644 --- a/clang/lib/Frontend/CompilerInvocation.cpp +++ b/clang/lib/Frontend/CompilerInvocation.cpp @@ -386,8 +386,6 @@ static bool ParseCodeGenArgs(CodeGenOptions &Opts, ArgList &Args, InputKind IK, Opts.UnwindTables = Args.hasArg(OPT_munwind_tables); Opts.RelocationModel = Args.getLastArgValue(OPT_mrelocation_model, "pic"); Opts.TrapFuncName = Args.getLastArgValue(OPT_ftrap_function_EQ); - Opts.BoundsChecking = Args.getLastArgIntValue(OPT_fbounds_checking_EQ, 0, - Diags); Opts.UseInitArray = Args.hasArg(OPT_fuse_init_array); Opts.FunctionSections = Args.hasArg(OPT_ffunction_sections); |