aboutsummaryrefslogtreecommitdiff
path: root/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_in_delayslot/main.c
blob: bc3eceea769396395b1d6dbcbae40e52c5b0899e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#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;
}