Sign in
llvm
/
clang
/
e8264bb9815647b4c6558aeb045c65965cdb26d3
/
.
/
test
/
CodeGen
/
typedef.c
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
;
}