brintos

brintos / llvm-project-archived public Read only

0
0
Text · 218 B · 3b59cc2 Raw
10 lines · cpp
1// RUN: %clang_cl -MD -c -o %t %s2// RUN: %llvm_jitlink %t 2>&1 | FileCheck %s3// CHECK: Hello, world!4 5#include <iostream>6int main(int argc, char *argv[]) {7  std::cout << "Hello, world!" << std::endl;8  return 0;9}10