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
/
2009-05-28-const-typedef.c
blob
3464fde685447c75da6a0af0d84c77d7b5175e1b
1
// RUN: %clang_cc1 -emit-llvm %s -o -
2
// PR4281
3
4
typedef
struct
{
5
int
i
;
6
}
something
;
7
8
typedef
const
something const_something
;
9
10
something
fail
(
void
);
11
12
int
13
main
(
int
argc
,
char
*
argv
[])
14
{
15
const_something R
=
fail
();
16
}
17