From 92b8ed6e5e5dc921c611eae4160570f169657030 Mon Sep 17 00:00:00 2001 From: Aaron Ballman Date: Tue, 16 May 2023 13:40:45 -0400 Subject: [PATCH] Correct documentation for -fconstexpr-depth= We were documenting that this was about recursive calls when it's actually about arbitrary calls. e.g., https://godbolt.org/z/en8sYd77E --- clang/docs/UsersManual.rst | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/clang/docs/UsersManual.rst b/clang/docs/UsersManual.rst index 0a568f3..65d1eaa 100644 --- a/clang/docs/UsersManual.rst +++ b/clang/docs/UsersManual.rst @@ -3294,8 +3294,7 @@ Controlling implementation limits .. option:: -fconstexpr-depth=N - Sets the limit for recursive constexpr function invocations to N. The - default is 512. + Sets the limit for constexpr function invocations to N. The default is 512. .. option:: -fconstexpr-steps=N -- 2.7.4