diff options
author | Reid Kleckner <rnk@google.com> | 2016-09-14 22:31:24 +0000 |
---|---|---|
committer | Reid Kleckner <rnk@google.com> | 2016-09-14 22:31:24 +0000 |
commit | a98496e6b0cc06226cf5a3585055042ab45c53d9 (patch) | |
tree | dc403645d3e5f28d7bd1592ffef6c5ce72646df2 /clang/test/Driver/cl-options.c | |
parent | e470927187f6a3848613a41ba98a21471800ed0d (diff) | |
download | bcm5719-llvm-a98496e6b0cc06226cf5a3585055042ab45c53d9.tar.gz bcm5719-llvm-a98496e6b0cc06226cf5a3585055042ab45c53d9.zip |
[clang-cl] Accept the joined equals version of -resource-dir=
lib/Tooling injects this argument without regard for what driver syntax
is in use.
llvm-svn: 281550
Diffstat (limited to 'clang/test/Driver/cl-options.c')
-rw-r--r-- | clang/test/Driver/cl-options.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/test/Driver/cl-options.c b/clang/test/Driver/cl-options.c index d4e9a5ef02e..4e99ff8467c 100644 --- a/clang/test/Driver/cl-options.c +++ b/clang/test/Driver/cl-options.c @@ -515,7 +515,8 @@ // RUN: -fms-extensions \ // RUN: -fno-ms-extensions \ // RUN: -mllvm -disable-llvm-optzns \ -// RUN: -resource-dir \ +// RUN: -resource-dir asdf \ +// RUN: -resource-dir=asdf \ // RUN: -Wunused-variable \ // RUN: -fmacro-backtrace-limit=0 \ // RUN: -fstandalone-debug \ |