blob: 4af9d819f026f5f42c2bc4223a6cdc585a7174c5 [file] [log] [blame]
// RUN: %clang_cc1 -emit-llvm %s -o -
typedef struct { int i; } Value;
typedef Value *PValue;
int get_value(PValue v) {
return v->i;
}