Displaying 3 results from an estimated 3 matches for "xu_zhong_xing".
2011 Dec 25
0
[LLVMdev] cmake broken on windows?
Python 2.x works. Thanks Joey.
δΊ 2011/12/25 18:41, Joey ει:
> Which version of Python?
>
> Looks like the same error I had when trying to use 3.x. You have to
> use a 2.x version of Python.
>
> Joey
>
> On Sunday, 25 December 2011, Xu Zhongxing <xu_zhong_xing at 163.com
> <mailto:xu_zhong_xing at 163.com>> wrote:
> > I executed
> >
> > cmake -G "Visual Studio 10" .
> >
> > on windows, and got the following error message. I have python installed
> > and in the path.
> >
> >
> >...
2011 Dec 24
4
[LLVMdev] dominance frontiers
Here's how I did things, back when I got to write my own infrastructure.
It's still O(n^2) in the worst case, but *much* quicker in the expected
case.
Number all the basic blocks, 0 to n-1 and build a vector mapping from
integer to block. Requires O(n) time and space.
For each block, compute the set containing it's dominance frontier, based
on Figure 10 of
*
*
*Efficiently
2012 Apr 03
0
Potential NULL pointer dereference
In openssh 5.9p1, clientloop.c
In line 1469, xxx_kex is checked against NULL, but at line 1513, xxx_kex is dereferenced directly. Is this inconsistent?