X-Git-Url: https://git.saurik.com/apple/ld64.git/blobdiff_plain/07feaf2cb00322d025073eb8ec22189ada5e4180..a645023da60d22e86be13f7b4d97adeff8bc6665:/unit-tests/test-cases/lto-object_path/main.c diff --git a/unit-tests/test-cases/lto-object_path/main.c b/unit-tests/test-cases/lto-object_path/main.c new file mode 100644 index 0000000..578d24b --- /dev/null +++ b/unit-tests/test-cases/lto-object_path/main.c @@ -0,0 +1,15 @@ + +#include + + +void foo(int x) +{ + printf("hello, world %d\n", x); +} + +int main() +{ + foo(10); + return 0; +} +