diff --git a/clang/include/clang/Driver/Options.td b/clang/include/clang/Driver/Options.td index 619c418365c26..49bf5d6621b46 100644 --- a/clang/include/clang/Driver/Options.td +++ b/clang/include/clang/Driver/Options.td @@ -5887,7 +5887,7 @@ def fbinutils_version_EQ : Joined<["-"], "fbinutils-version=">, "generated assembly will consider GNU as support. 'none' means that all ELF " "features can be used, regardless of binutils support. Defaults to 2.26.">; def fuse_ld_EQ : Joined<["-"], "fuse-ld=">, Group, - Flags<[LinkOption]>, Visibility<[ClangOption, CLOption]>; + Flags<[LinkOption]>, Visibility<[ClangOption, FlangOption, CLOption]>; def ld_path_EQ : Joined<["--"], "ld-path=">, Group; defm align_labels : BooleanFFlag<"align-labels">, Group; diff --git a/flang/test/Driver/misc-flags.f90 b/flang/test/Driver/misc-flags.f90 index 0c367b90b0b6c..ab5ed7e93dc8a 100644 --- a/flang/test/Driver/misc-flags.f90 +++ b/flang/test/Driver/misc-flags.f90 @@ -4,6 +4,9 @@ ! Make sure that `-Wl` is "visible" to Flang's driver ! RUN: %flang -Wl,abs -### %s +! Make sure that `-fuse-ld' is "visible" to Flang's driver +! RUN: %flang -fuse-ld= -### %s + program hello write(*,*), "Hello world!" end program hello