brintos

brintos / linux-shallow public Read only

0
0
Text · 302 B · a8cbb67 Raw
15 lines · cpp
1// SPDX-License-Identifier: GPL-2.02#include "llvm/Support/ManagedStatic.h"3#include "llvm/Support/raw_ostream.h"4 5#if LLVM_VERSION_MAJOR < 136# error "Perf requires llvm-devel/llvm-dev version 13 or greater"7#endif8 9int main()10{11	llvm::errs() << "Hello World!\n";12	llvm::llvm_shutdown();13	return 0;14}15