0
我將一些繼承代碼移植到我當前的平臺。當我編譯它時,它會報告關於arm彙編程序代碼的一些錯誤。如何將大拇指條件指令放入IT塊
消息顯示:
| {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'
我是一個完全新手到彙編手臂,所以我的問題是,如何讓下面的代碼爲IT
塊。正如編譯器所要求的一樣。
"movne r0, r2;\n"
"biceq r0, r0, #0xff;\n"
"biceq r0, r0, #0xf00;"
由於
感謝您的快速反應,這對我的作品。 – Alan