blob: 4af9d819f026f5f42c2bc4223a6cdc585a7174c5 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -emit-llvm %s -o -
Chris Lattner3e47be52007-11-30 18:02:19 +00002
3typedef struct { int i; } Value;
4typedef Value *PValue;
5
6int get_value(PValue v) {
7 return v->i;
8}