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 {
13
13
vector () {} // expected-remark {{found call to std::vector_cxx_ctor()}}
14
14
~vector () {}; // expected-remark{{found call to std::vector_cxx_dtor()}}
15
15
};
16
+ }; // namespace std
16
17
17
18
void 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()}}
19
20
20
21
// BEFORE-IDIOM: cir.call @_ZNSt6vectorIiEC1Ev(
21
22
// BEFORE-IDIOM: cir.call @_ZNSt6vectorIiED1Ev(
@@ -24,4 +25,3 @@ void vector_test() {
24
25
// AFTER-LOWERING-PREPARE: cir.call @_ZNSt6vectorIiEC1Ev(
25
26
// AFTER-LOWERING-PREPARE: cir.call @_ZNSt6vectorIiED1Ev(
26
27
}
27
- }; // namespace std
You can’t perform that action at this time.
0 commit comments