blob: 7b8371fe395d6bf654f9a6c8a4e6a0c6e6ed4638 [file] [log] [blame]
Akira Hatanakac8667622015-11-06 23:56:15 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3int callee0() __attribute__((not_tail_called,always_inline)); // expected-error{{'not_tail_called' and 'always_inline' attributes are not compatible}}
4int callee1() __attribute__((always_inline,not_tail_called)); // expected-error{{'always_inline' and 'not_tail_called' attributes are not compatible}}
5
6int foo(int a) {
7 return a ? callee0() : callee1();
8}
9
10int g0 __attribute__((not_tail_called)); // expected-warning {{'not_tail_called' attribute only applies to functions}}
11
12int foo2(int a) __attribute__((not_tail_called("abc"))); // expected-error {{'not_tail_called' attribute takes no arguments}}