File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -80,9 +80,9 @@ class CyclicAttrTypeReplacerChainRecursionPruningTest : public ::testing::Test {
8080    });
8181  }
8282
83-   Type getFunctionTypeChain (unsigned  N ) {
83+   Type getFunctionTypeChain (unsigned  n ) {
8484    Type type = b.getIndexType ();
85-     for  (unsigned  i = 0 ; i < N ; i++)
85+     for  (unsigned  i = 0 ; i < n ; i++)
8686      type = b.getFunctionType ({}, type);
8787    return  type;
8888  };
@@ -168,9 +168,9 @@ class CyclicAttrTypeReplacerBranchingRecusionPruningTest
168168    });
169169  }
170170
171-   Type getFunctionTypeTree (unsigned  N ) {
171+   Type getFunctionTypeTree (unsigned  n ) {
172172    Type type = b.getIndexType ();
173-     for  (unsigned  i = 0 ; i < N ; i++)
173+     for  (unsigned  i = 0 ; i < n ; i++)
174174      type = b.getFunctionType (type, type);
175175    return  type;
176176  };
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments