Home | History | Annotate | Download | only in CodeGenCXX

Lines Matching refs:constexpr

24     constexpr int constexpr_function() { return 0; }
29 constexpr int a = S<char>().constexpr_function();
34 constexpr int c = S<int>().constexpr_function();
44 template<typename T> constexpr int constexpr_function() { return 0; }
48 constexpr int e = constexpr_function<char>();
54 constexpr int g = constexpr_function<int>();
72 template<typename T> struct S { constexpr int f() { return 0; } };
73 template<typename T> constexpr int f() { return 0; }
94 // The linkage of a used constexpr member function can change from linkonce_odr
100 __attribute__((used)) constexpr int f() { return 0; }