[JITLink][LoongArch] Support R_LARCH_ALIGN relaxation (#122259)
[llvm-project.git] / compiler-rt / test / orc / TestCases / Windows / x86-64 / hello-world.cpp
blob3b59cc2b33daad0297d707261d31b43da8e52fbb
1 // RUN: %clang_cl -MD -c -o %t %s
2 // RUN: %llvm_jitlink %t 2>&1 | FileCheck %s
3 // CHECK: Hello, world!
5 #include <iostream>
6 int main(int argc, char *argv[]) {
7 std::cout << "Hello, world!" << std::endl;
8 return 0;