Revert elimination of global variable hack... still needed.
authorJeff Cohen <jeffc@jolt-lang.org>
Mon, 3 Jan 2005 16:34:19 +0000 (16:34 +0000)
committerJeff Cohen <jeffc@jolt-lang.org>
Mon, 3 Jan 2005 16:34:19 +0000 (16:34 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19273 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86TargetMachine.cpp

index 24406d5be97e0d3aef016cc6b503061dd6101b2b..0e3eea439242953d4031d576b526de218be71873 100644 (file)
@@ -27,6 +27,13 @@ using namespace llvm;
 
 X86VectorEnum llvm::X86Vector = NoSSE;
 
+/// X86TargetMachineModule - Note that this is used on hosts that cannot link
+/// in a library unless there are references into the library.  In particular,
+/// it seems that it is not possible to get things to work on Win32 without
+/// this.  Though it is unused, do not remove it.
+extern "C" int X86TargetMachineModule;
+int X86TargetMachineModule = 0;
+
 namespace {
   cl::opt<bool> NoSSAPeephole("disable-ssa-peephole", cl::init(true),
                         cl::desc("Disable the ssa-based peephole optimizer "