Nick Ulle
Nick Ulle
Using display math `$$` inside of a lists does not produce the usual highlighting applied to a display math block. Minimal example: ``` markdown This block is highlighted: $$ e^{i...
Generating new code is unwieldy because most of the ASTNode initializer methods only accept ASTNodes as arguments. This issue is to make the initializer methods more user friendly by having...
This makes the `createPhi` function usable. ~~I'm not sure why `createPhi` and `createPHI` were both defined.~~ RLLVMCompile does not use either, so AFAIK we can safely remove one. The LLVM...
The following example segfaults with the lastest version of Rllvm and LLVM 3.6.2: ``` r library(Rllvm) module = Module() fun = Function("fun", VoidType, list(), module = module) entry = Block(fun,...
Under the most recent commit (eaaebc506d49cd4f6f202c7af96f303b15ee7b9e) and LLVM 3.6.2, the following segfaults: ``` r library(Rllvm) m = Module() foo = Function("foo", VoidType, list(), module = m) entry = Block(foo, "entry")...
Rllvm has `createPHI()`, but this isn't useful without the PHINode methods for adding incoming blocks and values to a Phi instruction. See the [docs on llvm::PHINode](http://llvm.org/doxygen/classllvm_1_1PHINode.html) for more details.
Look for a new data set that's easier for learners to understand to use for the next iteration.
Your `requirements.txt` lists the package `google`, which [appears to be an incomplete package](https://pypi.org/project/google/) developed by Mario Vilas, not Google. As far as I can tell, your code never imports the...