Checkin tests

llvm-svn: 10187
diff --git a/llvm/projects/Stacker/test/max.st b/llvm/projects/Stacker/test/max.st
new file mode 100644
index 0000000..b3b905d
--- /dev/null
+++ b/llvm/projects/Stacker/test/max.st
@@ -0,0 +1,7 @@
+#
+# MAX test
+#
+FORWARD success;
+FORWARD failure;
+: step2 2 1 MAX 2 = IF success ELSE failure ENDIF ;
+: MAIN 1 2 MAX 2 = IF step2 ELSE failure ENDIF ;