iPhone assembly, compilation error with LDR parameters

后端 未结 2 2030
清酒与你
清酒与你 2020-12-10 23:23

I\'m trying to compile some assembly code (as part of Theora library) using XCode 4.2 and Apple LLVM compiller 3.0 (no thumb), but there are some errors in ldr(ne) instructi

2条回答
  •  北海茫月
    2020-12-10 23:59

    The iOS assembler does not support the =258014 pseudo-immediate form. You will need to either replace these with loads from a constant pool, or split them into mov + movt.

    You should also file a bug report to request that support be added.

提交回复
热议问题