Hacker News new | ask | show | jobs
by vram22 378 days ago
How does C3 compared to C in runtime performance?
1 comments

I based the LLVM-IR output on what Clang outputs for C. And so they should be identical. C3 has a single module option for maximum interfunctional optimizations, but Clang can give you LTO for the same thing.

So they should be the same, otherwise it's a bug.

thank you.