Implement DTPOFF.
[oota-llvm.git] / include / llvm / ExecutionEngine / Interpreter.h
index a491a68c2fb4de2048adc86d286715d6cccdb8fe..7425cdbcfda821dfda614e83ce5d35d1515d647a 100644 (file)
@@ -1,9 +1,9 @@
-//===- ExecutionEngine.h - Abstract Execution Engine Interface --*- C++ -*-===//
+//===-- Interpreter.h - Abstract Execution Engine Interface -----*- C++ -*-===//
 //
 //                     The LLVM Compiler Infrastructure
 //
-// This file was developed by Jeff Cohen 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.
 //
 //===----------------------------------------------------------------------===//
 //
@@ -18,9 +18,7 @@
 #include "llvm/ExecutionEngine/ExecutionEngine.h"
 #include <cstdlib>
 
-namespace llvm {
-  extern void LinkInInterpreter();
-}
+extern "C" void LLVMLinkInInterpreter();
 
 namespace {
   struct ForceInterpreterLinking {
@@ -32,7 +30,7 @@ namespace {
       if (std::getenv("bar") != (char*) -1)
         return;
 
-      llvm::LinkInInterpreter();
+      LLVMLinkInInterpreter();
     }
   } ForceInterpreterLinking;
 }