diff options
Diffstat (limited to 'clang/docs/ConstantInterpreter.rst')
-rw-r--r-- | clang/docs/ConstantInterpreter.rst | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/clang/docs/ConstantInterpreter.rst b/clang/docs/ConstantInterpreter.rst index d4fb8f6f34a..a86161c8fa0 100644 --- a/clang/docs/ConstantInterpreter.rst +++ b/clang/docs/ConstantInterpreter.rst @@ -10,8 +10,7 @@ Introduction The constexpr interpreter aims to replace the existing tree evaluator in clang, improving performance on constructs which are executed inefficiently by the evaluator. The interpreter is activated using the following flags: -* ``-fexperimental-new-constant-interpreter`` enables the interpreter, falling back to the evaluator for unsupported features -* ``-fforce-experimental-new-constant-interpreter`` forces the use of the interpreter, bailing out if an unsupported feature is encountered +* ``-fexperimental-new-constant-interpreter`` enables the interpreter, emitting an error if an unsupported feature is encountered Bytecode Compilation ==================== |