diff options
author | Hans Wennborg <hans@hanshq.net> | 2018-08-06 11:34:46 +0000 |
---|---|---|
committer | Hans Wennborg <hans@hanshq.net> | 2018-08-06 11:34:46 +0000 |
commit | bd98aec711ee23545ace46d2a8cd442bc938b821 (patch) | |
tree | 7a01a3dd74ea4c5cf5711fad13583f399a4a78e6 | |
parent | 9956e4a24bd27efe03a1b9d1920163c91dac6f9b (diff) | |
download | bcm5719-llvm-bd98aec711ee23545ace46d2a8cd442bc938b821.tar.gz bcm5719-llvm-bd98aec711ee23545ace46d2a8cd442bc938b821.zip |
clang-cl: Parse the new /JMC flag
llvm-svn: 339008
-rw-r--r-- | clang/include/clang/Driver/CLCompatOptions.td | 1 | ||||
-rw-r--r-- | clang/test/Driver/cl-options.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/clang/include/clang/Driver/CLCompatOptions.td b/clang/include/clang/Driver/CLCompatOptions.td index 78667851ca1..92be95212a8 100644 --- a/clang/include/clang/Driver/CLCompatOptions.td +++ b/clang/include/clang/Driver/CLCompatOptions.td @@ -379,6 +379,7 @@ def _SLASH_GZ : CLFlag<"GZ">; def _SLASH_H : CLFlag<"H">; def _SLASH_homeparams : CLFlag<"homeparams">; def _SLASH_hotpatch : CLFlag<"hotpatch">; +def _SLASH_JMC : CLFlag<"JMC">; def _SLASH_kernel : CLFlag<"kernel">; def _SLASH_LN : CLFlag<"LN">; def _SLASH_MP : CLJoined<"MP">; diff --git a/clang/test/Driver/cl-options.c b/clang/test/Driver/cl-options.c index 9aa6ced3499..3e2960fc471 100644 --- a/clang/test/Driver/cl-options.c +++ b/clang/test/Driver/cl-options.c @@ -429,6 +429,7 @@ // RUN: /H \ // RUN: /homeparams \ // RUN: /hotpatch \ +// RUN: /JMC \ // RUN: /kernel \ // RUN: /LN \ // RUN: /MP \ |