repo.or.cz
/
llvm.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove wasteful caching. This isn't needed for correctness because any function
[llvm.git]
/
test
/
FrontendC
/
2007-09-05-ConstCtor.c
blob
adae4a69b1035356cfc6813eba3b14653a80991d
1
// RUN: %llvmgcc -xc -Os -S %s -o /dev/null
2
// PR1641
3
4
struct
A
{
5
unsigned long
l
;
6
};
7
8
void
bar
(
struct
A
*
a
);
9
10
void
bork
() {
11
const unsigned long
vcgt
=
1234
;
12
struct
A a
= {
vcgt
};
13
bar
(&
a
);
14
}