mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-19 11:35:51 -04:00

Adds support for this flag. There is also another piece for llvm (separate review). More info: https://bugs.llvm.org/show_bug.cgi?id=36221 By Ruslan Nikolaev! Differential Revision: https://reviews.llvm.org/D43108 llvm-svn: 325901
8 lines
391 B
C
8 lines
391 B
C
// RUN: %clang -### %s 2>&1 | FileCheck %s -check-prefix=STACKPROBE
|
|
// RUN: %clang -### -mno-stack-arg-probe -mstack-arg-probe %s 2>&1 | FileCheck %s -check-prefix=STACKPROBE
|
|
// RUN: %clang -### -mstack-arg-probe -mno-stack-arg-probe %s 2>&1 | FileCheck %s -check-prefix=NO-STACKPROBE
|
|
// REQUIRES: clang-driver
|
|
|
|
// NO-STACKPROBE: -mno-stack-arg-probe
|
|
// STACKPROBE-NOT: -mno-stack-arg-probe
|