index
:
ccdjit.git
master
C JIT; A simple attempt at implementing a C JIT compiler (ccdjit - C Compiler Dynamic JIT)
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
tests
/
add2.c
blob: a9cc343466704f6cdd5aa8152d8e8b588c37c333 (
plain
)
1
2
3
4
5
6
7
int main(int argc, char **argv) { int x = 1; int y = 2; int z = x + y; return z; }