Displaying 1 result from an estimated 1 matches for "int_to_01".
2008 May 28
1
[LLVMdev] Advice on CFG pre-analysis
On May 27, 2008, at 1:57 PM, Mike Stump wrote:
> On May 23, 2008, at 11:53 PM, Talin wrote:
>> In the language I am working on, there are cases where the call flow
>> graph can affect the type of a variable.
>
> :-)
>
> This reminds me of people that want to use CFG and the optimizer to
> make:
>
> int i; int() { if (i) return 1; else return 0; }
>
> not