[llvm-commits] [llvm] r143876 - /llvm/trunk/lib/Support/Windows/Program.inc

NAKAMURA Takumi geek4civic at gmail.com
Tue Nov 15 23:09:07 PST 2011


Bill, I am happier if you picked it up into release_30.
It resolves a few test failures.

I think it is trivial. :)

...Takumi

2011/11/7 Peter Collingbourne <peter at pcc.me.uk>:
> Author: pcc
> Date: Sun Nov  6 10:45:46 2011
> New Revision: 143876
>
> URL: http://llvm.org/viewvc/llvm-project?rev=143876&view=rev
> Log:
> Return only the least significant 8 bits of the exit status from
> Process::Wait on Windows (mimicing POSIX behaviour).
>
> Modified:
>    llvm/trunk/lib/Support/Windows/Program.inc
>
> Modified: llvm/trunk/lib/Support/Windows/Program.inc
> URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/Windows/Program.inc?rev=143876&r1=143875&r2=143876&view=diff
> ==============================================================================
> --- llvm/trunk/lib/Support/Windows/Program.inc (original)
> +++ llvm/trunk/lib/Support/Windows/Program.inc Sun Nov  6 10:45:46 2011
> @@ -367,7 +367,7 @@
>     return -2;
>   }
>
> -  return status;
> +  return status & 0377;
>  }
>
>  bool
>
>
> _______________________________________________
> llvm-commits mailing list
> llvm-commits at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits
>




More information about the llvm-commits mailing list