aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/python_api/exprpath_register/main.c
blob: 4809a87cdf2109d9e8a6f8a6bbbeea0d20a83a24 (plain)
1
2
3
4
5
6
7
8
9
10

float my_foo() {
  float result = 10.0 + 20.0;
  return result;
}

int main(void) {
  float result = my_foo();
  return (int)result;
}