brintos

brintos / llvm-project-archived public Read only

0
0
Text · 162 B · e61b933 Raw
10 lines · cpp
1// RUN: %clang_cc1 -triple %itanium_abi_triple -emit-llvm -o - %s | FileCheck %s2 3int x;4struct A {5  int& y;6  A() : y(x) {}7};8A z;9// CHECK: store ptr @x, ptr10