edge reroutinmg was broken here
authorChristian Würdig <chriswue@ipd.info.uni-karlsruhe.de>
Wed, 9 Aug 2006 08:54:37 +0000 (08:54 +0000)
committerChristian Würdig <chriswue@ipd.info.uni-karlsruhe.de>
Wed, 9 Aug 2006 08:54:37 +0000 (08:54 +0000)
ir/be/test/adam_putt.c [new file with mode: 0644]

diff --git a/ir/be/test/adam_putt.c b/ir/be/test/adam_putt.c
new file mode 100644 (file)
index 0000000..7cc7b5a
--- /dev/null
@@ -0,0 +1,18 @@
+int hallo()
+{
+    int i = 0;
+      int j = 2;
+
+        i = add(i, j, i, j);
+
+         return i;
+}
+
+int add(int i, int j, int k, int l)
+{
+    return i + j + k +l;
+}
+
+int main() {
+        printf("%d\n", hallo());
+}