@@ -1971,20 +1971,20 @@ defm experimental_bounds_safety_attributes : BoolFOption<
19711971 PosFlag<SetTrue, [], [ClangOption], "Enable">,
19721972 NegFlag<SetFalse, [], [ClangOption], "Disable">,
19731973 BothFlags<[], [ClangOption, CC1Option], " experimental attributes">>;
1974- defm bounds_attributes_cxx_experimental : BoolFOption<
1975- "bounds-attributes -cxx-experimental ",
1976- LangOpts<"BoundsAttributesCXXExperimental ">, DefaultFalse,
1977- PosFlag<SetTrue, [], [ClangOption ], "Enable">,
1978- NegFlag<SetFalse, [], [ClangOption ], "Disable">,
1979- BothFlags<[], [ClangOption, CC1Option],
1980- " experimental bounds attributes for C++">>;
1981- defm bounds_attributes_objc_experimental : BoolFOption<
1982- "bounds-attributes -objc-experimental ",
1983- LangOpts<"BoundsAttributesObjCExperimental ">, DefaultFalse,
1984- PosFlag<SetTrue, [], [ClangOption ], "Enable">,
1985- NegFlag<SetFalse, [], [ClangOption ], "Disable">,
1986- BothFlags<[], [ClangOption, CC1Option],
1987- " experimental bounds attributes for ObjC">>;
1974+ defm bounds_safety_cxx_experimental : BoolFOption<
1975+ "experimental- bounds-safety -cxx",
1976+ LangOpts<"BoundsSafetyCXXExperimental ">, DefaultFalse,
1977+ PosFlag<SetTrue, [], [CC1Option ], "Enable">,
1978+ NegFlag<SetFalse, [], [CC1Option ], "Disable">,
1979+ BothFlags<[], [CC1Option],
1980+ " experimental support for -fbounds-safety for C++">>;
1981+ defm bounds_safety_objc_experimental : BoolFOption<
1982+ "experimental- bounds-safety -objc",
1983+ LangOpts<"BoundsSafetyObjCExperimental ">, DefaultFalse,
1984+ PosFlag<SetTrue, [], [CC1Option ], "Enable">,
1985+ NegFlag<SetFalse, [], [CC1Option ], "Disable">,
1986+ BothFlags<[], [CC1Option],
1987+ " experimental support for -fbounds-safety for ObjC">>;
19881988defm bounds_safety_relaxed_system_headers : BoolFOption<
19891989 "bounds-safety-relaxed-system-headers",
19901990 LangOpts<"BoundsSafetyRelaxedSystemHeaders">, DefaultTrue,
@@ -8221,6 +8221,11 @@ def objc_isystem : Separate<["-"], "objc-isystem">,
82218221def objcxx_isystem : Separate<["-"], "objcxx-isystem">,
82228222 MetaVarName<"<directory>">,
82238223 HelpText<"Add directory to the ObjC++ SYSTEM include search path">;
8224+ def internal_iframework : Separate<["-"], "internal-iframework">,
8225+ MetaVarName<"<directory>">,
8226+ HelpText<"Add directory to the internal system framework search path; these "
8227+ "are assumed to not be user-provided and are used to model system "
8228+ "and standard frameworks' paths.">;
82248229def internal_isystem : Separate<["-"], "internal-isystem">,
82258230 MetaVarName<"<directory>">,
82268231 HelpText<"Add directory to the internal system include search path; these "
0 commit comments