mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-24 22:24:54 +00:00
Change createPostRAScheduler so it can be turned off at llc -O1.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84273 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -15,13 +15,13 @@
|
||||
#ifndef LLVM_CODEGEN_PASSES_H
|
||||
#define LLVM_CODEGEN_PASSES_H
|
||||
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
#include <string>
|
||||
|
||||
namespace llvm {
|
||||
|
||||
class FunctionPass;
|
||||
class PassInfo;
|
||||
class TargetMachine;
|
||||
class TargetLowering;
|
||||
class RegisterCoalescer;
|
||||
class raw_ostream;
|
||||
@@ -119,8 +119,9 @@ namespace llvm {
|
||||
///
|
||||
FunctionPass *createLowerSubregsPass();
|
||||
|
||||
/// createPostRAScheduler - under development.
|
||||
FunctionPass *createPostRAScheduler();
|
||||
/// createPostRAScheduler - This pass performs post register allocation
|
||||
/// scheduling.
|
||||
FunctionPass *createPostRAScheduler(CodeGenOpt::Level OptLevel);
|
||||
|
||||
/// BranchFolding Pass - This pass performs machine code CFG based
|
||||
/// optimizations to delete branches to branches, eliminate branches to
|
||||
|
Reference in New Issue
Block a user