blob: 8e52f0982f52f9d9acd68a2e23f802b589f6225e [file] [log] [blame]
Manoj Gupta4fbf84c2018-05-09 21:41:18 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3void __attribute__((no_stack_protector)) foo() {}
4int __attribute__((no_stack_protector)) var; // expected-warning {{'no_stack_protector' attribute only applies to functions}}
5void __attribute__((no_stack_protector(2))) bar() {} // expected-error {{'no_stack_protector' attribute takes no arguments}}