Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame^] | 1 | // RUN: %clang_cc1 -triple %itanium_abi_triple -emit-llvm -o - %s | FileCheck %s |
Shih-wei Liao | ea28516 | 2010-06-04 12:34:56 -0700 | [diff] [blame] | 2 | |
3 | int x; | ||||
4 | struct A { | ||||
5 | int& y; | ||||
6 | A() : y(x) {} | ||||
7 | }; | ||||
8 | A z; | ||||
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame^] | 9 | // CHECK: store i32* @x, i32** |