Handle branch fallthrough

This commit is contained in:
Sajid
2024-09-09 22:52:34 +06:00
parent 60edcad576
commit 267e19b854
5 changed files with 71 additions and 27 deletions

View File

@@ -0,0 +1,15 @@
int cond(int a)
{
int v = 2;
if (a == 1)
{
v += 5;
}
return v;
}
extern "C" int _start()
{
return cond(0);
}

Binary file not shown.