(*can compiled*)
Compile[{}, Table[Boole[a == b == c], {a, 3}, {b, 3}, {c, 3}],
CompilationTarget -> "C"][]
(*can compiled*)
Compile[{}, Table[Boole[a != b != c], {a, 3}, {b, 3}, {c, 3}]][]
(*can't compiled*)
Compile[{}, Table[Boole[a != b != c], {a, 3}, {b, 3}, {c, 3}],
CompilationTarget -> "C"][]

Why doesn't the third snippet code compile when I set CompilationTarget -> "C"?
Labelis not implemented either:Compile[{}, Label[1]; Goto[1], CompilationTarget -> "C"]. Both of these should be considered bugs in the `CCompilerDriver`` package, IMO. – Oleksandr R. Oct 15 '13 at 17:43