mirror of
https://github.com/RPCSX/llvm.git
synced 2025-01-09 21:50:38 +00:00
278bb5de48
This pass is reponsible for assigning the generic virtual registers to register banks. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@265440 91177308-0d34-0410-b5e6-96231b3b80d8
31 lines
887 B
C++
31 lines
887 B
C++
//===-- 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
|