mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-15 21:24:00 +00:00
Add some comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@106809 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -330,6 +330,13 @@ bool LLVMTargetMachine::addCommonCodeGenPasses(PassManagerBase &PM,
|
|||||||
PM.add(createOptimizePHIsPass());
|
PM.add(createOptimizePHIsPass());
|
||||||
|
|
||||||
// Delete dead machine instructions regardless of optimization level.
|
// Delete dead machine instructions regardless of optimization level.
|
||||||
|
//
|
||||||
|
// At -O0, fast-isel frequently creates dead instructions.
|
||||||
|
//
|
||||||
|
// With optimization, dead code should already be eliminated. However
|
||||||
|
// there is one known exception: lowered code for arguments that are only
|
||||||
|
// used by tail calls, where the tail calls reuse the incoming stack
|
||||||
|
// arguments directly (see t11 in test/CodeGen/X86/sibcall.ll).
|
||||||
PM.add(createDeadMachineInstructionElimPass());
|
PM.add(createDeadMachineInstructionElimPass());
|
||||||
printAndVerify(PM, "After codegen DCE pass",
|
printAndVerify(PM, "After codegen DCE pass",
|
||||||
/* allowDoubleDefs= */ true);
|
/* allowDoubleDefs= */ true);
|
||||||
|
Reference in New Issue
Block a user