Lines Matching full:stack
1 // RUN: %clang -fno-stack-protector -### %s 2>&1 | FileCheck %s -check-prefix=NOSSP
2 // NOSSP-NOT: "-stack-protector" "1"
3 // NOSSP-NOT: "-stack-protector-buffer-size"
6 // SSP: "-stack-protector" "1"
7 // SSP-NOT: "-stack-protector-buffer-size"
10 // SSP-BUF: "-stack-protector" "1"
11 // SSP-BUF: "-stack-protector-buffer-size" "16"
14 // OPENBSD: "-stack-protector" "1"
16 // RUN: %clang -target i386-pc-openbsd -fno-stack-protector -### %s 2>&1 | FileCheck %s -check-prefix=OPENBSD_OFF
17 // OPENBSD_OFF-NOT: "-stack-protector"