mirror of
				https://github.com/tc39/test262.git
				synced 2025-10-31 11:44:31 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			162 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			162 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| function bar(n)
 | |
| {
 | |
|     for (p = 0; p < 30; p++)
 | |
|         if (p + 0.1)
 | |
|             n -= 0.2
 | |
| }
 | |
| 
 | |
| for (var i = 0; i < 100000; ++i)
 | |
|     bar(0);
 | |
| 
 | |
| function noInline() { }
 |