Author: Kazu Hirata Date: 2025-01-28T10:36:43-08:00 New Revision: 8578b816fa9050c33561f06d631459e12645953a
URL: https://github.com/llvm/llvm-project/commit/8578b816fa9050c33561f06d631459e12645953a DIFF: https://github.com/llvm/llvm-project/commit/8578b816fa9050c33561f06d631459e12645953a.diff LOG: [Driver] Fix a build error This patch fixes: clang/include/clang/Driver/Options.td:4356:3: error: Expected comma before next argument Added: Modified: clang/include/clang/Driver/Options.td Removed: ################################################################################ diff --git a/clang/include/clang/Driver/Options.td b/clang/include/clang/Driver/Options.td index 2bf687895db294..1af633e59d0bba 100644 --- a/clang/include/clang/Driver/Options.td +++ b/clang/include/clang/Driver/Options.td @@ -4352,7 +4352,7 @@ def stack_usage_file : Separate<["-"], "stack-usage-file">, def fextend_variable_liveness_EQ : Joined<["-"], "fextend-variable-liveness=">, Group<f_Group>, Visibility<[ClangOption, CC1Option]>, HelpText<"Extend the liveness of user variables through optimizations to " - "prevent stale or optimized-out variable values when debugging." + "prevent stale or optimized-out variable values when debugging.">, Values<"all,this,none">, NormalizedValues<["All", "This", "None"]>, NormalizedValuesScope<"CodeGenOptions::ExtendVariableLivenessKind">, _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits