mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			305 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			305 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
{
 | 
						|
	for {} calldatasize() { mstore(1, 2) } {
 | 
						|
		if calldatasize() { continue }
 | 
						|
		mstore(4, 5)
 | 
						|
		break
 | 
						|
	}
 | 
						|
}
 | 
						|
// ----
 | 
						|
// step: controlFlowSimplifier
 | 
						|
//
 | 
						|
// {
 | 
						|
//     for { } calldatasize() { mstore(1, 2) }
 | 
						|
//     {
 | 
						|
//         if calldatasize() { continue }
 | 
						|
//         mstore(4, 5)
 | 
						|
//         break
 | 
						|
//     }
 | 
						|
// }
 |