repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
typedef.c
blob
4af9d819f026f5f42c2bc4223a6cdc585a7174c5
1
// RUN: %clang_cc1 -emit-llvm %s -o -
2
3
typedef
struct
{
int
i
; }
Value
;
4
typedef
Value
*
PValue
;
5
6
int
get_value
(
PValue v
) {
7
return
v
->
i
;
8
}