aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/Target/README.txt9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/Target/README.txt b/lib/Target/README.txt
index 2c12089..1b55ac6 100644
--- a/lib/Target/README.txt
+++ b/lib/Target/README.txt
@@ -806,3 +806,12 @@ To fix this, we need to make CanEvaluateInDifferentType smarter.
//===---------------------------------------------------------------------===//
+We should be able to evaluate this loop:
+
+int test(int x_offs) {
+ while (x_offs > 4)
+ x_offs -= 4;
+ return x_offs;
+}
+
+//===---------------------------------------------------------------------===//