mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-11-03 14:21:30 +00:00 
			
		
		
		
	Fix typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37577 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
		@@ -383,7 +383,7 @@ void IfConverter::ScanInstructions(BBInfo &BBI) {
 | 
				
			|||||||
    return;
 | 
					    return;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  // First analyze the end of BB branches.
 | 
					  // First analyze the end of BB branches.
 | 
				
			||||||
  BBI.TrueBB = BBI.FalseBB;
 | 
					  BBI.TrueBB = BBI.FalseBB = NULL;
 | 
				
			||||||
  BBI.BrCond.clear();
 | 
					  BBI.BrCond.clear();
 | 
				
			||||||
  BBI.IsBrAnalyzable =
 | 
					  BBI.IsBrAnalyzable =
 | 
				
			||||||
    !TII->AnalyzeBranch(*BBI.BB, BBI.TrueBB, BBI.FalseBB, BBI.BrCond);
 | 
					    !TII->AnalyzeBranch(*BBI.BB, BBI.TrueBB, BBI.FalseBB, BBI.BrCond);
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user