[flang-commits] [clang] [flang] [Flang] Adding -ffree-line-length-<value> flag (PR #192941)
Tarun Prabhu via flang-commits
flang-commits at lists.llvm.org
Tue Apr 21 07:17:45 PDT 2026
================
@@ -7613,6 +7612,11 @@ def ffixed_line_length_EQ : Joined<["-"], "ffixed-line-length=">, Group<f_Group>
DocBrief<[{Set column after which characters are ignored in typical fixed-form lines in the source
file}]>;
def ffixed_line_length_VALUE : Joined<["-"], "ffixed-line-length-">, Group<f_Group>, Alias<ffixed_line_length_EQ>;
+def ffree_line_length_EQ : Joined<["-"], "ffree-line-length=">, Group<f_Group>,
+ HelpText<"Use <value> as the maximum line width in free-form mode">,
+ DocBrief<[{Set column after which characters are ignored in typical free-form lines in the source
----------------
tarunprabhu wrote:
nit: not sure what the word "typical" means here. Is there a way to override this value on a per-line basis? If not, the word can probably be dropped.
```suggestion
DocBrief<[{Set column after which characters are ignored in free-form lines in the source
```
https://github.com/llvm/llvm-project/pull/192941
More information about the flang-commits
mailing list