Skip to content

Commit f61bde6

Browse files
committed
fixup! fix test mismerge
1 parent 549d18c commit f61bde6

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

clang/test/DebugInfo/CXX/structured-binding.cpp

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,9 @@ int f() {
117117
auto &[c1, c2] = cmplx;
118118
int vctr __attribute__ ((vector_size (sizeof(int)*2)))= {1, 2};
119119
auto &[v1, v2] = vctr;
120+
auto [k, v, w] = std::triple{3, 4, 5};
121+
auto [m, n] = C{2, 3};
122+
auto [s, p] = D{2, 3};
120123
return //
121124
x1 //
122125
+ //
@@ -148,8 +151,4 @@ int f() {
148151
// CHECK: ![[V2_DEBUG_LOC]] = !DILocation(line: [[@LINE+1]]
149152
v2 //
150153
;
151-
auto [k, v, w] = std::triple{3, 4, 5};
152-
auto [m, n] = C{2, 3};
153-
auto [s, p] = D{2, 3};
154-
return x1 + y1 + x2 + y2 + z1 + z2 + k + v + w + m + n + s + p;
155154
}

0 commit comments

Comments
 (0)