You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
213 B

// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
struct X { int *XX; int Y;};
void foo() {
// CHECK: @foo.nate = internal global i32 0
static int nate = 0;
struct X bob = { &nate, 14 };
bar(&bob);
}