brintos

brintos / linux-shallow public Read only

0
0
Text · 365 B · 88a3d1b Raw
15 lines · cpp
1// SPDX-License-Identifier: GPL-2.02#include "llvm/Support/ManagedStatic.h"3#include "llvm/Support/raw_ostream.h"4#define NUM_VERSION (((LLVM_VERSION_MAJOR) << 16) + (LLVM_VERSION_MINOR << 8) + LLVM_VERSION_PATCH)5 6#if NUM_VERSION < 0x0309007# error "LLVM version too low"8#endif9int main()10{11	llvm::errs() << "Hello World!\n";12	llvm::llvm_shutdown();13	return 0;14}15