This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

怎么写代码能使得程序在一条流水线上完成——怎么优化程序语句

比如F28335(不知道其他DSP芯片在程序流水线上是否有差异),执行一个简单的判断和处理:

if(count++ >=  65535)

   count = 0;

这个代码能在一个流水线上完成吗?能的话它具体是怎么执行的?不能的话还应该怎样优化呢?