Skip to content

Commit 133d882

Browse files
committed
Add driver option for -fcustomizable-functions flag
1 parent c59a8bc commit 133d882

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

clang/include/clang/Options/Options.td

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1669,6 +1669,13 @@ defm coro_aligned_allocation : BoolFOption<"coro-aligned-allocation",
16691669
"Prefer aligned allocation for C++ Coroutines">,
16701670
NegFlag<SetFalse>>;
16711671

1672+
// C++ Customizable Functions
1673+
defm customizable_functions : BoolFOption<"customizable-functions",
1674+
LangOpts<"CustomizableFunctions">, DefaultFalse,
1675+
PosFlag<SetTrue, [], [ClangOption, CC1Option],
1676+
"Enable support for customizable functions with tag_invoke">,
1677+
NegFlag<SetFalse>>;
1678+
16721679
defm experimental_library : BoolFOption<"experimental-library",
16731680
LangOpts<"ExperimentalLibrary">, DefaultFalse,
16741681
PosFlag<SetTrue, [], [ClangOption, CC1Option, CLOption],

0 commit comments

Comments
 (0)