]>
git.saurik.com Git - apple/ld64.git/blame_incremental - unit-tests/test-cases/llvm-integration/main5.c
... / ...
Commit | Line | Data |
| 1 | |
| 2 | extern int foo1(void); |
| 3 | |
| 4 | int foo3(void) |
| 5 | { |
| 6 | return 42; |
| 7 | } |
| 8 | |
| 9 | int main() |
| 10 | { |
| 11 | int i = foo1(); |
| 12 | if (i == 42) |
| 13 | return 0; |
| 14 | else |
| 15 | return 1; |
| 16 | } |