IWETHEY v. 0.3.0 | TODO
1,095 registered users | 0 active users | 0 LpH | Statistics
Login | Create New User
IWETHEY Banner

Welcome to IWETHEY!

New Clang Clang Clang went the Trolley
Don't know squat about this, of course:
http://blog.llvm.org...y-self-hosts.html

But a compiler that can compile itself, well..
To understand recursion, one must first understand recursion..
-- doubtless everyone but moi knows author

Love It - why, it's better than being an allopathic alliteration addict accurately anticipating able advances, actually..
New Author
Edsger W. Dijkstra. Or so I've heard it attributed.
-Mike

"They that can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety."
- Benjamin Franklin, 1759 Historical Review of Pennsylvania
New About time

Here is one simple example that illustrates the difference between a typical GCC and Clang diagnostic:

$ gcc-4.2 -fsyntax-only t.c
t.c:7: error: invalid operands to binary + (have 'int' and 'struct A')
$ clang -fsyntax-only t.c
t.c:7:39: error: invalid operands to binary expression ('int' and 'struct A')
return y + func(y ? ((SomeA.X + 40) + SomeA) / 42 + SomeA.X : SomeA.X);
~~~~~~~~~~~~~~ ^ ~~~~~

New It's normal to do it that way.
It's kind of like a stress-test for a new language or new compiler: can it compile itself? One reason is that compilers are usually quite involved programs but they generally consist of solved problems,

Other famous stress tests are a kernel and a standard libc library.

Wade.

Q:Is it proper to eat cheeseburgers with your fingers?
A:No, the fingers should be eaten separately.
     Clang Clang Clang went the Trolley - (Ashton) - (3)
         Author - (mvitale)
         About time - (crazy)
         It's normal to do it that way. - (static)

Must be what keeps your hair up.
65 ms