Displaying 2 results from an estimated 2 matches for "449a64fe".
2009 Apr 03
0
[LLVMdev] Patch: MSIL backend global pointers initialization
Hi, Artur
> + if (isa<ConstantExpr>(I->constant)){
> + const ConstantExpr *CE =
> dyn_cast<ConstantExpr>(I->constant);
> + printConstantExpr(CE);
> + ty = CE->getType();
> + } else {
> + const Function * F = dyn_cast<Function>(I->constant);
> + printValueLoad(F);
> + ty =
2009 Apr 03
6
[LLVMdev] Patch: MSIL backend global pointers initialization
Anton Korobeynikov wrote:
> Hi, Artur
>
>
>> I'm working on that backend now, so probably I'll send some more patches
>> soon. I'd be grateful if you could give me some suggestions how to add
>> some test for that backend to the test-suite. On Linux the output code
>> could be run on Mono and compared with outputs for other backends but
>>