summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/typedef.c
blob: 3bdd52f6c572d82dec208d5b3fd05454f418affd (plain)
1
2
3
4
5
6
7
8
// RUN: clang-cc -emit-llvm %s -o -

typedef struct { int i; } Value;
typedef Value *PValue;

int get_value(PValue v) {
  return v->i;
}
OpenPOWER on IntegriCloud