diff options
Diffstat (limited to 'contrib/llvm/lib/CodeGen/GlobalISel/GlobalISel.cpp')
-rw-r--r-- | contrib/llvm/lib/CodeGen/GlobalISel/GlobalISel.cpp | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/contrib/llvm/lib/CodeGen/GlobalISel/GlobalISel.cpp b/contrib/llvm/lib/CodeGen/GlobalISel/GlobalISel.cpp new file mode 100644 index 000000000000..00c6a9d63158 --- /dev/null +++ b/contrib/llvm/lib/CodeGen/GlobalISel/GlobalISel.cpp @@ -0,0 +1,25 @@ +//===-- llvm/CodeGen/GlobalISel/GlobalIsel.cpp --- GlobalISel ----*- C++ -*-==// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// +/// \file +// This file implements the common initialization routines for the +// GlobalISel library. +//===----------------------------------------------------------------------===// + +#include "llvm/InitializePasses.h" +#include "llvm/PassRegistry.h" + +using namespace llvm; + +void llvm::initializeGlobalISel(PassRegistry &Registry) { + initializeIRTranslatorPass(Registry); + initializeLegalizerPass(Registry); + initializeLocalizerPass(Registry); + initializeRegBankSelectPass(Registry); + initializeInstructionSelectPass(Registry); +} |