brintos

brintos / llvm-project-archived public Read only

0
0
Text · 139 B · 4af9d81 Raw
9 lines · c
1// RUN: %clang_cc1 -emit-llvm %s -o -2 3typedef struct { int i; } Value;4typedef Value *PValue;5 6int get_value(PValue v) {7  return v->i;8}9