search for: decrreased

Displaying 2 results from an estimated 2 matches for "decrreased".

Did you mean: decreased
2015 Feb 17
2
[LLVMdev] Moving towards a singular pointer type
...pe checking can come in > handy to avoid later crashes (otherwise it's very easy to mess up a > getelementptr instruction). > > However, llvmlite does track types on its own, so we could also add our > own error checking before generating the IR. > This change would result in decrreased readibility and a higher chance of introducing bugs. I don't think the builder will necessarily be able to do all the required type-checking for free. Some of it won't be available even at builder-time (most obvious example would be a parameter register would have no type information to ch...
2015 Feb 09
2
[LLVMdev] Moving towards a singular pointer type
Hi there, Sorry, I don't have the thread history to reply to since I normally read llvmdev through the archives, but wanted to give my .02 of feedback anyway. As far as I understand, this change is wanted because the LLVM infrastructure derives no value from knowing the types, and there's a cost in terms of code spent to support all of it. I've been creating a frontend that mostly