Displaying 3 results from an estimated 3 matches for "mipsmcsymbolrefexpr".
2011 Oct 18
4
[LLVMdev] Question about MCExpr and subclasses
...Line 283 of MCElfStreamer.cpp reads like this:
00283 case MCExpr::Target: llvm_unreachable("Can't handle target exprs yet!");
Does this mean that if I use a subclass of MCTargetExpr to lower
MachineOperands to MCOperands, it won't work?
Currently, symbol operands are lowered to MipsMCSymbolRefExpr (a
subclass of MCTargetExpr) objects.
2011 Oct 18
0
[LLVMdev] Question about MCExpr and subclasses
....cpp reads like this:
> 00283 case MCExpr::Target: llvm_unreachable("Can't handle target exprs yet!");
>
> Does this mean that if I use a subclass of MCTargetExpr to lower
> MachineOperands to MCOperands, it won't work?
> Currently, symbol operands are lowered to MipsMCSymbolRefExpr (a
> subclass of MCTargetExpr) objects.
> _______________________________________________
> LLVM Developers mailing list
> LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev
2011 Oct 19
0
[LLVMdev] Question about MCExpr and subclasses
...case MCExpr::Target: llvm_unreachable("Can't handle target exprs yet!");
>>>
>>> Does this mean that if I use a subclass of MCTargetExpr to lower
>>> MachineOperands to MCOperands, it won't work?
>>> Currently, symbol operands are lowered to MipsMCSymbolRefExpr (a
>>> subclass of MCTargetExpr) objects.
>>> _______________________________________________
>>> LLVM Developers mailing list
>>> LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu
>>> http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev
>>
>...