File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed 
clang/test/CIR/Transforms Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -13,9 +13,10 @@ template <typename T> class vector {
1313  vector () {}   //  expected-remark {{found call to std::vector_cxx_ctor()}}
1414  ~vector () {}; //  expected-remark{{found call to std::vector_cxx_dtor()}}
1515};
16+ }; //  namespace std
1617
1718void  vector_test () {
18-   vector<int > v; //  expected-remark {{found call to std::vector_cxx_ctor()}}
19+   std:: vector<int > v; //  expected-remark {{found call to std::vector_cxx_ctor()}}
1920
2021  //  BEFORE-IDIOM: cir.call @_ZNSt6vectorIiEC1Ev(
2122  //  BEFORE-IDIOM: cir.call @_ZNSt6vectorIiED1Ev(
@@ -24,4 +25,3 @@ void vector_test() {
2425  //  AFTER-LOWERING-PREPARE: cir.call @_ZNSt6vectorIiEC1Ev(
2526  //  AFTER-LOWERING-PREPARE: cir.call @_ZNSt6vectorIiED1Ev(
2627}
27- }; //  namespace std
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments