summaryrefslogtreecommitdiffstats
path: root/clang/test/CodeGenCXX/constructor-init-reference.cpp
blob: e16cbb3fa617cb1ca5bd146fe4c7b88695063a97 (plain)
1
2
3
4
5
6
7
8
9
// RUN: %clang_cc1 -cxx-abi itanium -emit-llvm -o - %s | FileCheck %s

int x;
struct A {
  int& y;
  A() : y(x) {}
};
A z;
// CHECK: store i32* @x, i32**
OpenPOWER on IntegriCloud