http://llvm.org/bugs/show_bug.cgi?id=16319

[email protected] <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |[email protected]
         Resolution|---                         |INVALID

--- Comment #1 from [email protected] <[email protected]> ---
Don't use '&&' after a command that might fail:

rnk@RNK1-W /src/llvm/tools/clang
$ cat t.c
int main() {
  return 1;
}

rnk@RNK1-W /src/llvm/tools/clang
$ clang t.c -o t.exe && ./t.exe ; echo $?
1

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
LLVMbugs mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs

Reply via email to