Files
clang-p2996/clang/test/CodeGenCXX/constructor-init-reference.cpp
2013-12-13 22:43:52 +00:00

10 lines
154 B
C++

// 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**