[clang] 8578b81 - [Driver] Fix a build error

Kazu Hirata via cfe-commits cfe-commits at lists.llvm.org
Tue Jan 28 10:36:50 PST 2025


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">,


        


More information about the cfe-commits mailing list