llvm-for-llvmta/tools/clang/test/Sema/no_stack_protector.c
Nils Hölscher 7f403f4f1e added clang
2022-04-25 13:02:35 +02:00

6 lines
347 B
C

// RUN: %clang_cc1 -fsyntax-only -verify %s
void __attribute__((no_stack_protector)) foo() {}
int __attribute__((no_stack_protector)) var; // expected-warning {{'no_stack_protector' attribute only applies to functions}}
void __attribute__((no_stack_protector(2))) bar() {} // expected-error {{'no_stack_protector' attribute takes no arguments}}