aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/commands/expression/ir-interpreter-phi-nodes/main.cpp
blob: 92512c3707cfbf34fb8213a89a703be0bcd85b68 (plain)
1
2
3
4
5
6
7
8
int main()
{
    int i;
    i = 5;
    i = 2;
    i = 3;
    return 0;
}