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
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.