wangchdo opened a new pull request, #17025:
URL: https://github.com/apache/nuttx/pull/17025

     before:
     |   start = (alloc + 3) & ~3;
     |   end   = (alloc + size) & ~3;
     after:
     |   start = STACK_ALIGN_UP((uintptr_t)alloc);
     |   end   = STACK_ALIGN_DOWN((uintptr_t)alloc + size);
   
   *Note: Please adhere to [Contributing 
Guidelines](https://github.com/apache/nuttx/blob/master/CONTRIBUTING.md).*
   
   ## Summary
   
   tricore arch code implemention optimization
   
   ## Impact
   
   tricore arch code optimization,no impact to other nuttx parts
   
   ## Testing
   
   **ostest passed on a2g-tc397-5v-tft board:**
   
   <img width="403" height="521" alt="image" 
src="https://github.com/user-attachments/assets/1ed90a49-888a-4b6e-baa2-a4a50da30cef";
 />
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@nuttx.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to