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