llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT--> @llvm/pr-subscribers-clang Author: Utkarsh Saxena (usx95) <details> <summary>Changes</summary> --- Full diff: https://github.com/llvm/llvm-project/pull/180723.diff 1 Files Affected: - (modified) clang/include/clang/Options/Options.td (+2-3) ``````````diff diff --git a/clang/include/clang/Options/Options.td b/clang/include/clang/Options/Options.td index 5465fa6df3609..22b31ea22c638 100644 --- a/clang/include/clang/Options/Options.td +++ b/clang/include/clang/Options/Options.td @@ -1965,8 +1965,7 @@ defm lifetime_safety : BoolFOption< LangOpts<"EnableLifetimeSafety">, DefaultTrue, PosFlag<SetTrue, [], [CC1Option], "Enable">, NegFlag<SetFalse, [], [CC1Option], "Disable">, - BothFlags<[], [CC1Option], - " experimental lifetime safety for C++">>; + BothFlags<[], [CC1Option], " lifetime safety for C++">>; defm lifetime_safety_inference : BoolFOption<"lifetime-safety-inference", @@ -1974,7 +1973,7 @@ defm lifetime_safety_inference PosFlag<SetTrue, [], [CC1Option], "Enable">, NegFlag<SetFalse, [], [CC1Option], "Disable">, BothFlags<[], [CC1Option], - " experimental lifetime safety inference for C++">>; + " lifetime safety inference for C++">>; defm lifetime_safety_tu_analysis : BoolFOption<"experimental-lifetime-safety-tu-analysis", `````````` </details> https://github.com/llvm/llvm-project/pull/180723 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
