Skip to content
Snippets Groups Projects
Commit b2cdbf51 authored by Bouquillon Fabien's avatar Bouquillon Fabien
Browse files

clean ecb and ucb

parent 85ab3e46
No related branches found
No related tags found
No related merge requests found
void foo() {
int i;
if (i) {
i++;
}
}
void bar() {
int i;
for (i = 0; i < 10; i++) {
}
}
int main(void) {
int i;
for (i = 0; i < 10; i++) {
if (i % 2) {
foo();
} else {
bar();
}
if (i % 3) {
continue;
}
i += 2;
}
}
// Function bar
loop "bar" + 0x24 max 10 total 100;
// Function main
loop "main" + 0x80 max 10 total 10;
\ No newline at end of file
// Function main
loop "main" + 0x80 max 10 total 10;
loop "main" + 0x5c max 10 total 100;
\ No newline at end of file
This diff is collapsed.
int main(void) {
int i;
int j = 0;
for (i = 0; i < 10; i++) {
int k = i + 3;
int l = 0;
for(l = 0; l < 10; l++) {
int n = i + k;
}
int w = 10 + k;
}
int x = 100 + j;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment