blob: e306c8ef79cd545625eae4a25a7baa6608e2b291 [file] [log] [blame]
Alexander Ivchenko0fb8c872018-05-18 11:56:21 +00001// RUN: %clang_cc1 -triple=i386-unknown-unknown -verify -fcf-protection=branch -std=c++11 -fsyntax-only %s
Oren Ben Simhon220671a2018-03-17 13:31:35 +00002
3// Function pointer definition.
4[[gnu::nocf_check]] typedef void (*FuncPointerWithNoCfCheck)(void); // no-warning
5typedef void (*FuncPointer)(void);
6
7// Dont allow function declaration and definition mismatch.
8[[gnu::nocf_check]] void testNoCfCheck(); // expected-note {{previous declaration is here}}
9void testNoCfCheck(){}; // expected-error {{conflicting types for 'testNoCfCheck'}}
10
11// No variable or parameter declaration
12int [[gnu::nocf_check]] i; // expected-error {{'nocf_check' attribute cannot be applied to types}}
13void testNoCfCheckImpl(double i [[gnu::nocf_check]]) {} // expected-warning {{'nocf_check' attribute only applies to functions and function pointers}}
14
15// Allow attributed function pointers as well as casting between attributed
16// and non-attributed function pointers.
17void testNoCfCheckMismatch(FuncPointer f) {
18 FuncPointerWithNoCfCheck fNoCfCheck = f; // expected-error {{cannot initialize a variable of type}}
19 (*fNoCfCheck)(); // no-warning
20}
21
22// 'nocf_check' Attribute has no parameters.
23[[gnu::nocf_check(1)]] int testNoCfCheckParams(); // expected-error {{'nocf_check' attribute takes no arguments}}