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>
6int main(int argc, char *argv[]) {
7 printf(format: "Hello, world!\n");
8 fflush(stdout);
9 return 0;
10}
11

source code of compiler-rt/test/orc/TestCases/Windows/x86-64/hello-world.c