Displaying 2 results from an estimated 2 matches for "whatever_else".
2008 Sep 29
0
[LLVMdev] Integer handling
...uld be useful as I could match it for the
different ones at generate different code for each.
With some discussion with others I think we came up with an acceptable
method (which allows me to completely kill my type duplication system,
thank god). I am going to go down the area of
Java/Python/Lua/whatever_else and just have normal operators (/,
shifts, etc...) act as if the integers are signed. But there will
also be named ops (udiv/sdiv) which can be used in place of a symbol
op (such as /) to be explicit for those who really need unsigned
usage. I plan for the operators to actually all be named (so i...
2008 Sep 29
2
[LLVMdev] Integer handling
On Sep 29, 2008, at 1:29 PM, Scott Graham wrote:
> On Mon, Sep 29, 2008 at 12:41 AM, OvermindDL1
> <overminddl1 at gmail.com> wrote:
>> I have ended up making a rather complicated type system to handle
>> quite a few things, all stemming from the fact that the integer type
>> has no sign information (even if it did not use it, would be nice to
>> look at it in