mirror of
				https://github.com/tc39/test262.git
				synced 2025-10-31 03:34:08 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			250 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			250 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| //@ runDefault("--useConcurrentJIT=0", "--validateFTLOSRExitLiveness=1")
 | |
| 
 | |
| function foo(o, p) {
 | |
|     p = null;
 | |
|     try {
 | |
|         o.f = null;
 | |
|         p = null;
 | |
|     } catch (e) {
 | |
|     }
 | |
| }
 | |
| noInline(foo);
 | |
| 
 | |
| for (var i = 0; i < 1000000; ++i) {
 | |
|     foo({});
 | |
| }
 |