Search
Project
General
Profile
Sign in
Register
Home
Projects
Help
Search
:
Eigen Compiler Suite
All Projects
Eigen Compiler Suite
Overview
Activity
Roadmap
Issues
News
Forums
Files
Download (170 Bytes)
RE: A small C compiler generating Eigen IR
» 00005.c
Rochus Keller
, 17 June 2024 18:59
int
main
()
{
int
x
;
int
*
p
;
int
**
pp
;
x
=
0
;
p
=
&
x
;
pp
=
&
p
;
if
(
*
p
)
return
1
;
if
(
**
pp
)
return
1
;
else
**
pp
=
1
;
if
(
x
)
return
0
;
else
return
1
;
}
« Previous
1
2
3
Next »
(3-3/3)
Loading...