Daniel Dunbar | a572887 | 2009-12-15 20:14:24 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -emit-llvm-only -verify %s |
Eli Friedman | 0398101 | 2009-12-11 02:42:07 +0000 | [diff] [blame] | 2 | |
| 3 | struct XPTParamDescriptor {}; |
| 4 | struct nsXPTParamInfo { |
| 5 | nsXPTParamInfo(const XPTParamDescriptor& desc); |
| 6 | }; |
| 7 | void a(XPTParamDescriptor *params) { |
| 8 | const nsXPTParamInfo& paramInfo = params[0]; |
| 9 | } |
Chandler Carruth | 5535c38 | 2010-01-12 20:32:25 +0000 | [diff] [blame] | 10 | |
| 11 | // CodeGen of reference initialized const arrays. |
| 12 | namespace PR5911 { |
| 13 | template <typename T, int N> int f(const T (&a)[N]) { return N; } |
| 14 | int iarr[] = { 1 }; |
| 15 | int test() { return f(iarr); } |
| 16 | } |
Fariborz Jahanian | f7c00ed | 2010-01-25 18:30:26 +0000 | [diff] [blame] | 17 | |
| 18 | // radar 7574896 |
| 19 | struct Foo { int foo; }; |
| 20 | Foo& ignoreSetMutex = *(new Foo); |
| 21 | |
Douglas Gregor | de4b1d8 | 2010-01-29 19:14:02 +0000 | [diff] [blame] | 22 | // Binding to a bit-field that requires a temporary. |
| 23 | struct { int bitfield : 3; } s = { 3 }; |
| 24 | const int &s2 = s.bitfield; |