imc_extension.c 271 B

123456789101112
  1. #include <stdio.h>
  2. #include "ImC/imc_extension.h"
  3. int __imc_get_loop_pass_count(int loop_id) {
  4. // printf("__imc_get_loop_pass_count() called\r\n");
  5. #if(imcENABLE_STATIC_LOOP_PASS_COUNT)
  6. return imcLOOP_PASS_COUNT;
  7. #else
  8. return 0;
  9. #endif
  10. }