summaryrefslogtreecommitdiff
path: root/lldb/test/API/commands/frame/recognizer/main.m
blob: 6546692bba772eadeac9593258748b7f720743e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#import <stdio.h>

void foo(int a, int b)
{
    printf("%d %d\n", a, b);
}

void bar(int *ptr) { printf("%d\n", *ptr); }

int main (int argc, const char * argv[])
{
    foo(42, 56);
    int i = 78;
    bar(&i);
    return 0;
}