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 length handling in character kind implicit conversion (#74586)
[llvm-project.git]
/
lldb
/
test
/
Shell
/
SymbolFile
/
PDB
/
Inputs
/
VariablesLocationsTest.cpp
blob
7b7180a3ec43b08160821dec17f7fe53815b9a10
1
int
g_var
=
2222
;
2
3
void
__fastcall
foo
(
short
arg_0
,
float
arg_1
) {
4
char
loc_0
=
'x'
;
5
double
loc_1
=
0.5678
;
6
}
7
8
__declspec
(
align
(
128
))
struct
S
{
9
int
a
=
1234
;
10
};
11
12
void
bar
(
int
arg_0
) {
13
S loc_0
;
14
int
loc_1
=
5678
;
15
}
16
17
18
int
main
(
int
argc
,
char
*
argv
[]) {
19
bool
loc_0
=
true
;
20
int
loc_1
=
3333
;
21
22
foo
(
1111
,
0.1234
);
23
bar
(
22
);
24
25
return
0
;
26
}