blob: 61f426da51fddcfbf95edde844a3c40e17493b99 [file] [log] [blame]
Stephen Hines651f13c2014-04-23 16:59:28 -07001// RUN: %clang_cc1 -triple %itanium_abi_triple -emit-llvm -o - %s | FileCheck %s
Shih-wei Liaoea285162010-06-04 12:34:56 -07002
3int x;
4struct A {
5 int& y;
6 A() : y(x) {}
7};
8A z;
Stephen Hines651f13c2014-04-23 16:59:28 -07009// CHECK: store i32* @x, i32**