11 lines · c
1// RUN: %clang_cl -MD -c -o %t %s2// RUN: %llvm_jitlink %t 2>&1 | FileCheck %s3// CHECK: Hello, world!4 5#include <stdio.h>6int main(int argc, char *argv[]) {7 printf("Hello, world!\n");8 fflush(stdout);9 return 0;10}11 1// RUN: %clang_cl -MD -c -o %t %s2// RUN: %llvm_jitlink %t 2>&1 | FileCheck %s3// CHECK: Hello, world!4 5#include <stdio.h>6int main(int argc, char *argv[]) {7 printf("Hello, world!\n");8 fflush(stdout);9 return 0;10}11