Tool/software:
1.the compiler is ti-cgt-arm_20.2.5.LTS
2.why the code below doesn't work, while(1){;} is compiled as an empty function by the compiler?
static void loopTest(void)
{
while(1)
{
;
}
}