Sign in
fuchsia
/
third_party
/
swift-clang
/
a40ea3abe6e2f0b338d00c38fe7d724241c5af97
/
.
/
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
;
}