In the CCS debug interface, when I "step into (F5)", it goes well.
However, if I "Resume(F8)" from any line below, the debug mode stops even there is another breaking point in the next line .
///GPIO input interrupt PC4 PC5 PC6 PC7
GPIOPinTypeGPIOInput(GPIO_PORTC_BASE, GPIO_PIN_4 | GPIO_PIN_5 | GPIO_PIN_6 | GPIO_PIN_7);
GPIOPadConfigSet(GPIO_PORTC_BASE, GPIO_PIN_4 | GPIO_PIN_5 | GPIO_PIN_6 | GPIO_PIN_7, GPIO_STRENGTH_2MA, GPIO_PIN_TYPE_STD);
GPIOIntTypeSet(GPIO_PORTC_BASE, GPIO_PIN_4 | GPIO_PIN_5 | GPIO_PIN_6 | GPIO_PIN_7, GPIO_HIGH_LEVEL);
GPIOIntRegister(GPIO_PORTC_BASE, GPIOCIntHandler);
GPIOIntEnable(GPIO_PORTC_BASE, GPIO_PIN_4 | GPIO_PIN_5 | GPIO_PIN_6 | GPIO_PIN_7);
IntEnable(Int_GPIOC);
