diff options
author | Nandor Licker <n@ndor.email> | 2019-09-02 11:34:47 +0000 |
---|---|---|
committer | Nandor Licker <n@ndor.email> | 2019-09-02 11:34:47 +0000 |
commit | c3bdad8c1e142925fd7d65191ca88cb8e28782df (patch) | |
tree | c5081c2a8b55cbd654d027f18b47f4c9390839a0 /clang/lib/Frontend | |
parent | da496363bf2b65b22a80772fec5693d14270e655 (diff) | |
download | bcm5719-llvm-c3bdad8c1e142925fd7d65191ca88cb8e28782df.tar.gz bcm5719-llvm-c3bdad8c1e142925fd7d65191ca88cb8e28782df.zip |
Revert [Clang Interpreter] Initial patch for the constexpr interpreter
This reverts r370636 (git commit 8327fed9475a14c3376b4860c75370c730e08f33)
llvm-svn: 370642
Diffstat (limited to 'clang/lib/Frontend')
-rw-r--r-- | clang/lib/Frontend/CompilerInvocation.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/clang/lib/Frontend/CompilerInvocation.cpp b/clang/lib/Frontend/CompilerInvocation.cpp index c01eb6d0a3a..86c66f3a07a 100644 --- a/clang/lib/Frontend/CompilerInvocation.cpp +++ b/clang/lib/Frontend/CompilerInvocation.cpp @@ -2783,10 +2783,6 @@ static void ParseLangArgs(LangOptions &Opts, ArgList &Args, InputKind IK, getLastArgIntValue(Args, OPT_fconstexpr_depth, 512, Diags); Opts.ConstexprStepLimit = getLastArgIntValue(Args, OPT_fconstexpr_steps, 1048576, Diags); - Opts.EnableNewConstInterp = - Args.hasArg(OPT_fexperimental_new_constant_interpreter); - Opts.ForceNewConstInterp = - Args.hasArg(OPT_fforce_experimental_new_constant_interpreter); Opts.BracketDepth = getLastArgIntValue(Args, OPT_fbracket_depth, 256, Diags); Opts.DelayedTemplateParsing = Args.hasArg(OPT_fdelayed_template_parsing); Opts.NumLargeByValueCopy = |