index
:
cibic
complex_cast
complex_pointer
location_tracking
master
mips
new_scope_design
optimization
reg
semantics
ssa
typedef
C Implemented Bare and Ingenuous Compiler
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
compile_data
/
custom_const.c
blob: d0126f3af7a2d46973e320ad19aa42cf7d554cc1 (
plain
) (
blame
)
1
2
3
4
5
6
7
8
9
int
sum
;
void
f
()
{
sum
=
3
;
}
int
main
()
{
sum
=
1
;
f
();
printf
(
"%d
\n
"
,
sum
);
}