Diff of /test/stmt-do-while.c [000000] .. [52cec0]  Maximize  Restore

Switch to side-by-side view

--- a
+++ b/test/stmt-do-while.c
@@ -0,0 +1,7 @@
+
+void func()
+{
+	do {
+		x = x / 2;
+	} while (x < 10);
+}