Add placeholder variable to make Win32 work, applied for Morten Ofstad

llvm-svn: 17406
This commit is contained in:
Chris Lattner 2004-11-01 20:10:20 +00:00
parent ef41cbb97d
commit 720eb217a7
1 changed files with 6 additions and 0 deletions

View File

@ -27,6 +27,12 @@ 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 = 0;
namespace {
cl::opt<bool> NoSSAPeephole("disable-ssa-peephole", cl::init(true),
cl::desc("Disable the ssa-based peephole optimizer "