diff options
author | Nico Weber <nicolasweber@gmx.de> | 2015-09-18 20:49:33 +0000 |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2015-09-18 20:49:33 +0000 |
commit | 4cc796a6149840ab1bcad8e8b82004156923db39 (patch) | |
tree | 8ca6605a200bae288e158cf423c52dba914d4e2a | |
parent | 4859773a9538b28622d9cd92d8bf2dc5ac69a833 (diff) | |
download | bcm5719-llvm-4cc796a6149840ab1bcad8e8b82004156923db39.tar.gz bcm5719-llvm-4cc796a6149840ab1bcad8e8b82004156923db39.zip |
clang-cl: Don't warn on /bigobj flag
LLVM r217812 made it so that clang-cl implicitly creates bigobj files when
needed, independent of this flag. It looks like cl has this flag to produce obj
flags compatible with MSVS 2003's linker by default, something we don't care
about. Since clang-cl always has /bigobj behavior, don't warn that the flag is
unused, just ignore it silently.
llvm-svn: 248034
-rw-r--r-- | clang/include/clang/Driver/CLCompatOptions.td | 2 | ||||
-rw-r--r-- | clang/test/Driver/cl-options.c | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/clang/include/clang/Driver/CLCompatOptions.td b/clang/include/clang/Driver/CLCompatOptions.td index 8cd6c588ac4..61294c7aba4 100644 --- a/clang/include/clang/Driver/CLCompatOptions.td +++ b/clang/include/clang/Driver/CLCompatOptions.td @@ -243,6 +243,7 @@ def _SLASH_Zl : CLFlag<"Zl">, // Ignored: def _SLASH_analyze_ : CLIgnoredFlag<"analyze-">; +def _SLASH_bigobj : CLIgnoredFlag<"bigobj">; def _SLASH_cgthreads : CLIgnoredJoined<"cgthreads">; def _SLASH_d2Zi_PLUS : CLIgnoredFlag<"d2Zi+">; def _SLASH_errorReport : CLIgnoredJoined<"errorReport">; @@ -274,7 +275,6 @@ def _SLASH_Zo_ : CLIgnoredFlag<"Zo-">; // Unsupported: def _SLASH_AI : CLJoined<"AI">; -def _SLASH_bigobj : CLFlag<"bigobj">; def _SLASH_clr : CLJoined<"clr">; def _SLASH_doc : CLJoined<"doc">; def _SLASH_FA_joined : CLJoined<"FA">; diff --git a/clang/test/Driver/cl-options.c b/clang/test/Driver/cl-options.c index a52a3692694..7e2c7a48c25 100644 --- a/clang/test/Driver/cl-options.c +++ b/clang/test/Driver/cl-options.c @@ -221,6 +221,7 @@ // Ignored options. Check that we don't get "unused during compilation" errors. // RUN: %clang_cl /c \ // RUN: /analyze- \ +// RUN: /bigobj \ // RUN: /cgthreads4 \ // RUN: /cgthreads8 \ // RUN: /d2Zi+ \ |