[clang] [LifetimeSafety] Remove "experimental" from option descriptions (PR #180723)
via cfe-commits
cfe-commits at lists.llvm.org
Tue Feb 10 03:23:14 PST 2026
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
More information about the cfe-commits
mailing list