diff options
author | Hans Wennborg <hans@hanshq.net> | 2018-09-26 07:39:04 +0000 |
---|---|---|
committer | Hans Wennborg <hans@hanshq.net> | 2018-09-26 07:39:04 +0000 |
commit | 42a0bd189bd805741cc23e8df909677abde3a0a7 (patch) | |
tree | ffc4dad7080f7d2ffa6efcaf3e462e90d63ef019 /clang/test/Driver/cl-options.c | |
parent | 0ae4022aa0bb2572ef7b997d00904125a0e089b1 (diff) | |
download | bcm5719-llvm-42a0bd189bd805741cc23e8df909677abde3a0a7.tar.gz bcm5719-llvm-42a0bd189bd805741cc23e8df909677abde3a0a7.zip |
[clang-cl] Make /Gs imply default stack probes, not /Gs0 (PR39074)
Differential revision: https://reviews.llvm.org/D52499
llvm-svn: 343077
Diffstat (limited to 'clang/test/Driver/cl-options.c')
-rw-r--r-- | clang/test/Driver/cl-options.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Driver/cl-options.c b/clang/test/Driver/cl-options.c index f4a928dac24..80f2d748157 100644 --- a/clang/test/Driver/cl-options.c +++ b/clang/test/Driver/cl-options.c @@ -101,7 +101,7 @@ // Gy_-NOT: -ffunction-sections // RUN: %clang_cl /Gs -### -- %s 2>&1 | FileCheck -check-prefix=Gs %s -// Gs: "-mstack-probe-size=0" +// Gs: "-mstack-probe-size=4096" // RUN: %clang_cl /Gs0 -### -- %s 2>&1 | FileCheck -check-prefix=Gs0 %s // Gs0: "-mstack-probe-size=0" // RUN: %clang_cl /Gs4096 -### -- %s 2>&1 | FileCheck -check-prefix=Gs4096 %s |