brintos

brintos / llvm-project-archived public Read only

0
0
Text · 219 B · 5d64ffa Raw
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