Simple hand-coded tests to aid in early development of backends, along with a
Makefile to run ad-hoc tests easily.

llvm-svn: 15664
diff --git a/llvm/test/Regression/CodeGen/Generic/call2-ret0.ll b/llvm/test/Regression/CodeGen/Generic/call2-ret0.ll
new file mode 100644
index 0000000..6159e40
--- /dev/null
+++ b/llvm/test/Regression/CodeGen/Generic/call2-ret0.ll
@@ -0,0 +1,13 @@
+int %bar(int %x) {
+  ret int 0
+}
+
+int %foo(int %x) {
+  %q = call int %bar(int 1)
+  ret int %q
+}
+
+int %main() {  
+  %r = call int %foo(int 2) 
+  ret int %r
+}