I want to parse assembler code. There are "{" appearing in the generated code by C compiler like:
CMP.W 20(R1), R12 { JGE .L3
Shouldn't be this two lines?!
test1.s was created with gcc -S test1.c
#define MAX 10
int main() {
int a[MAX];
int index;
for (index = 0; index < MAX; index++) {
a[index] = index*index;
}
return 0;
}