diff options
-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 \ |