repo.or.cz
/
clang.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[Heikki Kultala] This patch contains the ABI changes for the TCE target.
[clang.git]
/
test
/
CodeGen
/
2008-08-19-cast-of-typedef.c
blob
740f48a8baa36aae18e0eb40ef66f72bcda57c58
1
// RUN: %clang_cc1 -emit-llvm -o %t %s
2
3
typedef
short
T
[
4
];
4
struct
s
{
5
T f0
;
6
};
7
8
void
foo
(
struct
s
*
x
) {
9
bar
((
long
)
x
->
f0
);
10
}