[PATCH] D64655: [Clang][Driver] don't error for unsupported as options for -no-integrated-as

Reid Kleckner via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Fri Jul 12 13:36:21 PDT 2019


rnk added a comment.

I don't think this is the right fix, because now I think we get this behavior that we don't want:

  $ clang -E t.c -o t.i -Wa,-mbig-obj
  # no warning
  $ clang -E t.c -o t.i -Wa,-mbig-obj -fno-integrated-as
  clang: warning: argument unused during compilation: '-Wa,-mbig-obj' [-Wunused-command-line-argument]

If we can't make those behave the same, I think we should revert to fix the Linux build and silence the warning a different way.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D64655/new/

https://reviews.llvm.org/D64655





More information about the cfe-commits mailing list