================
@@ -77,16 +77,17 @@ void test() {
   // CHECK-FIXES-NEXT: do_something("for");
   // CHECK-FIXES-NEXT: }
 
-  for (;;) {
-    do_something("for-ok");
-  }
   for (;;)
     ;
   // CHECK-MESSAGES: :[[@LINE-2]]:11: warning: statement should be inside 
braces
   // CHECK-FIXES: for (;;) {
   // CHECK-FIXES-NEXT: ;
   // CHECK-FIXES-NEXT: }
 
+  for (;;) {
+    do_something("for-ok");
+  }
+
----------------
localspook wrote:

This needs to be moved down because otherwise the `// CHECK-FIXES: for (;;) {` 
finds *this* loop, then the `// CHECK-FIXES-NEXT: ;` fails (because it found 
the wrong loop).

https://github.com/llvm/llvm-project/pull/162851
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to