remove some exclusions that don't exist anymore.
[oota-llvm.git] / include / llvm / LinkAllVMCore.h
index ae1e1cd025bb6a412172b45fcec1f2e53ff96006..4c428a00631c2927f6b3466ee2d42cce5e142944 100644 (file)
@@ -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,8 +16,6 @@
 #ifndef LLVM_LINKALLVMCORE_H
 #define LLVM_LINKALLVMCORE_H
 
-#include "llvm/System/IncludeFile.h"
-
 #include "llvm/Module.h"
 #include "llvm/Instructions.h"
 #include "llvm/IntrinsicInst.h"
@@ -25,7 +23,6 @@
 #include "llvm/Analysis/Verifier.h"
 #include "llvm/System/Alarm.h"
 #include "llvm/System/DynamicLibrary.h"
-#include "llvm/System/MappedFile.h"
 #include "llvm/System/Memory.h"
 #include "llvm/System/Mutex.h"
 #include "llvm/System/Path.h"
@@ -47,9 +44,10 @@ namespace {
       // to know that getenv() never returns -1, this will do the job.
       if (std::getenv("bar") != (char*) -1)
         return;
-      (void)new llvm::Module("");
+      llvm::Module* M = new llvm::Module("");
       (void)new llvm::UnreachableInst();
       (void)    llvm::createVerifierPass(); 
+      (void) new llvm::Mangler(*M,"");
     }
   } ForceVMCoreLinking;
 }