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
[flang] Fix crash in HLFIR generation (#118399)
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
2005-02-20-AggregateSAVEEXPR.c
blob
33f7e10ed2adeab44767cb6e9f62dc083a8dbe38
1
// RUN: %clang_cc1 %s -o /dev/null -emit-llvm
2
3
double
creal
(
_Complex
double
);
4
5
int
foo
(
__complex
float
c
) {
6
return
creal
(
c
);
7
}