[clang] [flang] [Flang][Driver] Enable the global-isel option (PR #177188)
Tarun Prabhu via cfe-commits
cfe-commits at lists.llvm.org
Wed Jan 21 08:16:08 PST 2026
================
@@ -3662,11 +3664,13 @@ defm digraphs : BoolFOption<"digraphs",
def fno_eliminate_unused_debug_symbols : Flag<["-"], "fno-eliminate-unused-debug-symbols">, Group<f_Group>;
def fno_inline_functions : Flag<["-"], "fno-inline-functions">, Group<f_clang_Group>,
Visibility<[ClangOption, CC1Option]>;
-def fno_inline : Flag<["-"], "fno-inline">, Group<f_clang_Group>,
+def fno_inline : Flag<["-"], "fno-inline">, Group<f_Group>,
Visibility<[ClangOption, CC1Option]>;
-def fno_global_isel : Flag<["-"], "fno-global-isel">, Group<f_clang_Group>,
+def fno_global_isel : Flag<["-"], "fno-global-isel">, Group<f_Group>,
----------------
tarunprabhu wrote:
Since the `-f(no-)*` options have been moved from `f_clang_Group` to `f_Group`, should the corresponding `-f*` options be moved as well?
https://github.com/llvm/llvm-project/pull/177188
More information about the cfe-commits
mailing list