X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=include%2Fllvm%2FLinkAllVMCore.h;h=5a85c04a18dd81c8320f7a35adacd446ade24b14;hb=8ad435fa4809b5a4ad1043435cbafd5c9ddf2d93;hp=fa46dbb1f1190eb24ec7e671e859861eae483c87;hpb=7107c3badfe78ec89dcab6c02cf1b1bcaccc42a8;p=oota-llvm.git diff --git a/include/llvm/LinkAllVMCore.h b/include/llvm/LinkAllVMCore.h index fa46dbb1f11..5a85c04a18d 100644 --- a/include/llvm/LinkAllVMCore.h +++ b/include/llvm/LinkAllVMCore.h @@ -2,8 +2,8 @@ // // The LLVM Compiler Infrastructure // -// This file was developed by Reid Spencer and is distributed under the -// University of Illinois Open Source License. See LICENSE.TXT for details. +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // @@ -16,19 +16,23 @@ #ifndef LLVM_LINKALLVMCORE_H #define LLVM_LINKALLVMCORE_H -#include "llvm/System/IncludeFile.h" - -#include "llvm/Module.h" +#include "llvm/Analysis/Verifier.h" +#include "llvm/InlineAsm.h" #include "llvm/Instructions.h" #include "llvm/IntrinsicInst.h" -#include "llvm/InlineAsm.h" -#include "llvm/Analysis/Verifier.h" -#include "llvm/System/Memory.h" -#include "llvm/System/Mutex.h" +#include "llvm/LLVMContext.h" +#include "llvm/Module.h" #include "llvm/Support/Dwarf.h" -#include "llvm/Support/Mangler.h" +#include "llvm/Support/DynamicLibrary.h" #include "llvm/Support/MathExtras.h" -#include "llvm/Support/SlowOperationInformer.h" +#include "llvm/Support/Memory.h" +#include "llvm/Support/Mutex.h" +#include "llvm/Support/Path.h" +#include "llvm/Support/Process.h" +#include "llvm/Support/Program.h" +#include "llvm/Support/Signals.h" +#include "llvm/Support/TimeValue.h" +#include namespace { struct ForceVMCoreLinking { @@ -39,8 +43,8 @@ namespace { // to know that getenv() never returns -1, this will do the job. if (std::getenv("bar") != (char*) -1) return; - (void)new llvm::Module(""); - (void)new llvm::UnreachableInst(); + (void)new llvm::Module("", llvm::getGlobalContext()); + (void)new llvm::UnreachableInst(llvm::getGlobalContext()); (void) llvm::createVerifierPass(); } } ForceVMCoreLinking;