diff options
Diffstat (limited to 'lib/CodeGen/GlobalISel/GlobalISel.cpp')
-rw-r--r-- | lib/CodeGen/GlobalISel/GlobalISel.cpp | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/lib/CodeGen/GlobalISel/GlobalISel.cpp b/lib/CodeGen/GlobalISel/GlobalISel.cpp new file mode 100644 index 0000000000000..231e5ac82becd --- /dev/null +++ b/lib/CodeGen/GlobalISel/GlobalISel.cpp @@ -0,0 +1,30 @@ +//===-- 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; + +#ifndef LLVM_BUILD_GLOBAL_ISEL + +void llvm::initializeGlobalISel(PassRegistry &Registry) { +} + +#else + +void llvm::initializeGlobalISel(PassRegistry &Registry) { + initializeIRTranslatorPass(Registry); + initializeRegBankSelectPass(Registry); +} +#endif // LLVM_BUILD_GLOBAL_ISEL |