xref: /llvm-project/compiler-rt/test/orc/TestCases/Windows/x86-64/hello-world.c (revision 73c4033987c5ca6cf8022f840f3c42e3324da1cb)
1 // RUN: %clang_cl -MD -c -o %t %s
2 // RUN: %llvm_jitlink %t 2>&1 | FileCheck %s
3 // CHECK: Hello, world!
4 
5 #include <stdio.h>
main(int argc,char * argv[])6 int main(int argc, char *argv[]) {
7   printf("Hello, world!\n");
8   fflush(stdout);
9   return 0;
10 }
11