I'm porting some inherited codes to my current platform. When I compiling it, it reports some error about arm assembler codes.
The message shows:
| {standard input}:7236: Error: thumb conditional instruction should be in IT block -- `movne r0,r2'
| {standard input}:7237: Error: thumb conditional instruction should be in IT block -- `biceq r0,r0,#0xff'
| {standard input}:7238: Error: thumb conditional instruction should be in IT block -- `biceq r0,r0,#0xf00'
I'm a totally newbie to arm assembler, so my question is how to make below codes into IT
block. Just as required by the compiler.
"movne r0, r2;\n"
"biceq r0, r0, #0xff;\n"
"biceq r0, r0, #0xf00;"
Thanks