本文介绍了(BUG)lcc中的内联汇编/断点的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 Hello Group 任何人都可以在 lccwin32中为以下错误确认或建议workrounds。如果内联汇编语句紧跟在for循环之后 并且您尝试在其上设置断点,那么断点将在循环的每个循环中被点击,而不是在循环结束。 谢谢 克里斯 Hello Group Can anyone confirm or suggest workrounds for the following bug inlccwin32. If an inline assembly statement immediately follows a for loopand you try to set a breakpoint on it, then the breakpoint is hit at eachiteration of the loop, not after the loop finishes. Thanks Chris 推荐答案 编译器没有使用 内联汇编时发出任何调试信息。这就是为什么调试器会感到困惑的原因。 一种解决方法是编写 _asm(" int\t The compiler does NOT emit any debug info when usinginline assembly. That is why the debugger get''s confused. One workaround is to write_asm("int\t 我相信lcc-win32有自己的新闻组,可能是更好的地方发布,特别是因为CLC的主题是严格的这个语言比具体的实现还要多b $ b,而内联汇编的操作更是非常好。 那就是说, lcc-win32的开发人员会发布在这里,所以也许能够确认你的bug报告离线。 I believe lcc-win32 has its own newsgroup which may be a better place topost, especially since the topic of CLC is strictly the language ratherthan specific implementations, and the operation of inline assembly iseven more offtopic. That said, the developer of lcc-win32 does post here so may be able toconfirm your bug report offline. - 马克麦金太尔 CLC FAQ< http:// c- faq.com/> CLC自述文件:< http://www.ungerhu.com/jxh/clc.welcome.txt> --Mark McIntyre CLC FAQ <http://c-faq.com/>CLC readme: <http://www.ungerhu.com/jxh/clc.welcome.txt> 这篇关于(BUG)lcc中的内联汇编/断点的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
10-24 03:06