diff options
author | Hans Wennborg <hans@hanshq.net> | 2019-03-06 09:38:04 +0000 |
---|---|---|
committer | Hans Wennborg <hans@hanshq.net> | 2019-03-06 09:38:04 +0000 |
commit | 7219c7e9af7718f026ac5e3ea72249d037898e5b (patch) | |
tree | 2e4155a01916293c8d0b6a41e82b02a1ecc22965 /clang/test/Driver/cl-options.c | |
parent | a25a2c7c9a7e1e328a5bd8274d2d86b1fadc4692 (diff) | |
download | bcm5719-llvm-7219c7e9af7718f026ac5e3ea72249d037898e5b.tar.gz bcm5719-llvm-7219c7e9af7718f026ac5e3ea72249d037898e5b.zip |
clang-cl: Parse /Qspectre and a few other missing options (PR40964)
llvm-svn: 355489
Diffstat (limited to 'clang/test/Driver/cl-options.c')
-rw-r--r-- | clang/test/Driver/cl-options.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/clang/test/Driver/cl-options.c b/clang/test/Driver/cl-options.c index 9c6bb36877c..33b1575a511 100644 --- a/clang/test/Driver/cl-options.c +++ b/clang/test/Driver/cl-options.c @@ -390,6 +390,8 @@ // Unsupported but parsed options. Check that we don't error on them. // (/Zs is for syntax-only) // RUN: %clang_cl /Zs \ +// RUN: /await \ +// RUN: /constexpr:depth1000 /constexpr:backtrace1000 /constexpr:steps1000 \ // RUN: /AIfoo \ // RUN: /AI foo_does_not_exist \ // RUN: /Bt \ @@ -443,6 +445,9 @@ // RUN: /QIfist \ // RUN: /Qimprecise_fwaits \ // RUN: /Qpar \ +// RUN: /Qpar-report:1 \ +// RUN: /Qsafe_fp_loads \ +// RUN: /Qspectre \ // RUN: /Qvec-report:2 \ // RUN: /u \ // RUN: /V \ |