summaryrefslogtreecommitdiff
path: root/gcc/testsuite/melt
diff options
context:
space:
mode:
authorbstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4>2009-07-20 13:36:50 +0000
committerbstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4>2009-07-20 13:36:50 +0000
commit6a7a28215a83b521a3fb08e89aa8d0e29ad71b5a (patch)
tree8482ff29fea22050addd6f975629dee04db92c96 /gcc/testsuite/melt
parent93f6392a2d6a960bcf3865ccc9b4110d5695b9aa (diff)
downloadgcc-6a7a28215a83b521a3fb08e89aa8d0e29ad71b5a.tar.gz
2009-07-20 Basile Starynkevitch <basile@starynkevitch.net>
* gcc/testsuite/melt/tgreenprint.c: Added new file. * gcc/testsuite/melt/tmallbuf.c: Corrected comment about running it. * gcc/melt-runtime.c (melt_really_initialize, plugin_init) (melt_initialize, meltgc_gimple_gate, meltgc_gimple_gate) (meltgc_gimple_execute, meltgc_rtl_gate, meltgc_rtl_execute) (meltgc_simple_ipa_gate, meltgc_simple_ipa_execute) (meltgc_register_pass): better debug printfs. (meltgc_register_pass): issue a warning if unamed pass. * gcc/melt/ana-simple.melt: makegreen work but don't do anything useful yet. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/melt-branch@149818 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/testsuite/melt')
-rw-r--r--gcc/testsuite/melt/tgreenprint.c39
-rw-r--r--gcc/testsuite/melt/tmallbuf.c4
2 files changed, 41 insertions, 2 deletions
diff --git a/gcc/testsuite/melt/tgreenprint.c b/gcc/testsuite/melt/tgreenprint.c
new file mode 100644
index 00000000000..11c10d2fa32
--- /dev/null
+++ b/gcc/testsuite/melt/tgreenprint.c
@@ -0,0 +1,39 @@
+// file tgreenprint.c
+// a testcase for the makegreen command and pass
+/***
+ run in buildir/gcc
+ ./cc1 -fmelt=makegreen \
+ -fmelt-module-path=. \
+ -fmelt-compile-script=./built-melt-cc-script \
+ -fmelt-source-path=.:...melt-source -fmelt-tempdir=/tmp \
+ -fmelt-debug \
+ -Wall -O3 .../tgreenprint.c
+
+ ***/
+
+#include <stdio.h>
+#include <stdlib.h>
+
+static inline void
+say_str_int (FILE* f, const char* str, int n)
+{
+ if (f)
+ {
+ fprintf(f, "say str=%s n=%d\n", str, n);
+ fflush (f);
+ }
+}
+
+extern FILE* otherfile;
+
+void green_test(void)
+{
+ say_str_int (stdout, "green_test stdout", __LINE__);
+ say_str_int (stderr, "green_test stderr", __LINE__);
+ say_str_int ((FILE*)0, "green_test nullfile", __LINE__);
+ say_str_int (otherfile, "green_test otherfile", __LINE__);
+}
+
+
+
+
diff --git a/gcc/testsuite/melt/tmallbuf.c b/gcc/testsuite/melt/tmallbuf.c
index 9c58f91b38c..e36093c7b4d 100644
--- a/gcc/testsuite/melt/tmallbuf.c
+++ b/gcc/testsuite/melt/tmallbuf.c
@@ -2,9 +2,9 @@
/***
run in buildir/gcc
./cc1 -fmelt=smallana \
- -fmelt-dynlibdir=. \
+ -fmelt-module-pass=. \
-fmelt-compile-script=./built-melt-cc-script \
- -fmelt-gensrcdir=. -fmelt-tempdir=/tmp \
+ -fmelt-source-path=. -fmelt-tempdir=/tmp \
-fmelt-debug \
-Wall -O .../tmallbuf.c