Function branch analysis

This commit is contained in:
Sajid
2024-09-09 21:09:37 +06:00
parent 25ede377a1
commit 60edcad576
6 changed files with 310 additions and 59 deletions

View File

@@ -0,0 +1,18 @@
int cond(int a)
{
if (a == 1)
{
return 5;
}
else if (a == 4)
{
return 9;
}
return 0;
}
extern "C" int _start()
{
return cond(0);
}

BIN
tests/PowerAnalyse/cond.elf Normal file

Binary file not shown.