Follow Slashdot stories on Twitter

 



Forgot your password?
typodupeerror
×

Comment LLVM (Score 1) 192

If you're going to do this in the long run, it would make more sense to distribute LLVM byte code and compile that to native code on the host... That way you have small diffs to the byte code, and also you get targeted optimization (and maybe even custom profile guided optimization).

Comment Re:Sad code, sad article (Score 1) 465

I always wonder why C (and C like languages) don't have a loop like this:

do {
block1();
} while (condition) {
block2();
}

It seems easy to parse and would be quite useful since this kind of loop is all over the place... IMHO it's more readable than a while(1) loop with a break.

Regards,
-Jeremy

Slashdot Top Deals

"Here's something to think about: How come you never see a headline like `Psychic Wins Lottery.'" -- Comedian Jay Leno

Working...