Skip to content

Commit 8578b81

Browse files
[Driver] Fix a build error
This patch fixes: clang/include/clang/Driver/Options.td:4356:3: error: Expected comma before next argument
1 parent 822f74a commit 8578b81

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/include/clang/Driver/Options.td

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4352,7 +4352,7 @@ def stack_usage_file : Separate<["-"], "stack-usage-file">,
43524352
def fextend_variable_liveness_EQ : Joined<["-"], "fextend-variable-liveness=">,
43534353
Group<f_Group>, Visibility<[ClangOption, CC1Option]>,
43544354
HelpText<"Extend the liveness of user variables through optimizations to "
4355-
"prevent stale or optimized-out variable values when debugging."
4355+
"prevent stale or optimized-out variable values when debugging.">,
43564356
Values<"all,this,none">,
43574357
NormalizedValues<["All", "This", "None"]>,
43584358
NormalizedValuesScope<"CodeGenOptions::ExtendVariableLivenessKind">,

0 commit comments

Comments
 (0)