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]
/
lldb
/
test
/
API
/
lang
/
c
/
complex
/
main.c
blob
eadc896ea231858be80164f0558fa681195f89d9
1
#include <complex.h>
2
3
int
main
() {
4
float complex
complex_float
= -
1.5
f
+ -
2.5
f
*
I
;
5
double complex
complex_double
= -
1.5
+ -
2.5
*
I
;
6
long double complex
complex_long_double
= -
1.5L
+ -
2.5L
*
I
;
7
return
0
;
// break here
8
}