mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-01 00:33:09 +00:00
Modify previous patch per review comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@39817 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e7e7d0d7e3
commit
72f1596403
@ -79,7 +79,8 @@ LLVMTargetMachine::addPassesToEmitFile(FunctionPassManager &PM,
|
||||
PM.add(createPrologEpilogCodeInserter());
|
||||
|
||||
// Second pass scheduler.
|
||||
PM.add(createPostRAScheduler());
|
||||
if (!Fast)
|
||||
PM.add(createPostRAScheduler());
|
||||
|
||||
// Branch folding must be run after regalloc and prolog/epilog insertion.
|
||||
if (!Fast)
|
||||
@ -185,7 +186,8 @@ bool LLVMTargetMachine::addPassesToEmitMachineCode(FunctionPassManager &PM,
|
||||
PM.add(createMachineFunctionPrinterPass(cerr));
|
||||
|
||||
// Second pass scheduler.
|
||||
PM.add(createPostRAScheduler());
|
||||
if (!Fast)
|
||||
PM.add(createPostRAScheduler());
|
||||
|
||||
// Branch folding must be run after regalloc and prolog/epilog insertion.
|
||||
if (!Fast)
|
||||
|
@ -1,4 +1,4 @@
|
||||
//===----- SchedulePostRAList.cpp - list scheduler ----===//
|
||||
//===----- SchedulePostRAList.cpp - list scheduler ------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
|
Loading…
Reference in New Issue
Block a user