Displaying 2 results from an estimated 2 matches for "csr_ghc".
2012 Jun 24
4
[LLVMdev] Request for merge: GHC/ARM calling convention.
...us patch version. (For those interested,
the error with empty list was "expected identifier in dag init")
+// GHC set of callee saved regs is empty as all those regs are
+// used for passing STG regs around
+// sub/add LR is a workaround for not being able to compile empty list:
+// def CSR_GHC : CalleeSavedRegs<()>;
+def CSR_GHC : CalleeSavedRegs<(sub (add LR), LR)>;
otherwise, the patch is the same like it was merged into 3.0 release as
submitted here:
http://lists.cs.uiuc.edu/pipermail/llvmdev/2011-October/044173.html
Please see attached patch and tell me if it's al...
2012 Aug 01
0
[LLVMdev] Request for merge: GHC/ARM calling convention.
...hose interested, the error with empty list was "expected identifier in dag init")
>
> +// GHC set of callee saved regs is empty as all those regs are
> +// used for passing STG regs around
> +// sub/add LR is a workaround for not being able to compile empty list:
> +// def CSR_GHC : CalleeSavedRegs<()>;
> +def CSR_GHC : CalleeSavedRegs<(sub (add LR), LR)>;
>
> otherwise, the patch is the same like it was merged into 3.0 release as submitted here: http://lists.cs.uiuc.edu/pipermail/llvmdev/2011-October/044173.html
>
> Please see attached patch and...