| Daniel Dunbar | a572887 | 2009-12-15 20:14:24 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -emit-llvm -o - %s | grep "store i32\* @x, i32\*\*" |
| Eli Friedman | e3a97db | 2009-08-29 20:58:20 +0000 | [diff] [blame] | 2 | |
| 3 | int x; | ||||
| 4 | class A { | ||||
| 5 | int& y; | ||||
| 6 | A() : y(x) {} | ||||
| 7 | }; | ||||
| 8 | A z; | ||||
| 9 | |||||