llvm-project/lldb/test/API/functionalities/breakpoint/breakpoint_in_delayslot/main.c

22 lines
194 B
C

#include <stdio.h>
foo (int a, int b)
{
int c;
if (a<=b)
c=b-a;
else
c=b+a;
return c;
}
int main()
{
int a=7, b=8, c;
c = foo(a, b);
return 0;
}