mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-11-04 05:17:07 +00:00 
			
		
		
		
	The MachineScheduler does not currently require JoinSplitEdges.
This option will eventually either be enabled unconditionally or replaced by a more general live range splitting optimization. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@167879 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
		@@ -2116,10 +2116,10 @@ bool RegisterCoalescer::runOnMachineFunction(MachineFunction &fn) {
 | 
			
		||||
  else
 | 
			
		||||
    JoinGlobalCopies = (EnableGlobalCopies == cl::BOU_TRUE);
 | 
			
		||||
 | 
			
		||||
  if (EnableJoinSplits == cl::BOU_UNSET)
 | 
			
		||||
    JoinSplitEdges = ST.enableMachineScheduler();
 | 
			
		||||
  else
 | 
			
		||||
    JoinSplitEdges = (EnableJoinSplits == cl::BOU_TRUE);
 | 
			
		||||
  // The MachineScheduler does not currently require JoinSplitEdges. This will
 | 
			
		||||
  // either be enabled unconditionally or replaced by a more general live range
 | 
			
		||||
  // splitting optimization.
 | 
			
		||||
  JoinSplitEdges = EnableJoinSplits;
 | 
			
		||||
 | 
			
		||||
  DEBUG(dbgs() << "********** SIMPLE REGISTER COALESCING **********\n"
 | 
			
		||||
               << "********** Function: " << MF->getName() << '\n');
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user