Slide 8
Slide 8 text
ELVM IR -> LLVM IR
$ ./elvm/out/elc –ll hello.c.eir > hello.c.eir.ll
$ wc –l hello.c.eir.ll
33882 hello.c.eir.ll
$ clang –S –O0 –emit-llvm hello.c
$wc –l hello.ll
45 hello.ll
$ time lli hello.c.eir.ll
Hello, world!
real 0m0.339s
user 0m0.300s
sys 0m0.037s
$ time lli hello.ll
Hello, world!
real 0m0.009s
user 0m0.009s
sys 0m0.000s