d0366ebe1e1ac40afe5aea520031663daa87e31c
[oota-llvm.git] / include / llvm / LinkAllVMCore.h
1 //===- LinkAllVMCore.h - Reference All VMCore Code --------------*- C++ -*-===//
2 //
3 //                      The LLVM Compiler Infrastructure
4 //
5 // This file was developed by Reid Spencer and is distributed under the
6 // University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This header file pulls in all the object modules of the VMCore library so
11 // that tools like llc, opt, and lli can ensure they are linked with all symbols
12 // from libVMCore.a It should only be used from a tool's main program.
13 //
14 //===----------------------------------------------------------------------===//
15
16 #ifndef LLVM_LINKALLVMCORE_H
17 #define LLVM_LINKALLVMCORE_H
18
19 #include "llvm/Support/IncludeFile.h"
20 #include "llvm/Support/Mangler.h"
21 #include "llvm/Module.h"
22 #include "llvm/Instructions.h"
23 #include "llvm/IntrinsicInst.h"
24 #include "llvm/InlineAsm.h"
25 #include "llvm/Analysis/Verifier.h"
26
27 namespace {
28   struct ForceVMCoreLinking {
29     ForceVMCoreLinking() {
30       // We must reference VMCore in such a way that compilers will not
31       // delete it all as dead code, even with whole program optimization,
32       // yet is effectively a NO-OP. As the compiler isn't smart enough
33       // to know that getenv() never returns -1, this will do the job.
34       if (std::getenv("bar") != (char*) -1)
35         return;
36       (void)new llvm::Module("");
37       (void)new llvm::UnreachableInst();
38       (void)    llvm::createVerifierPass(); 
39     }
40   } ForceVMCoreLinking;
41 }
42
43 #endif