diff options
author | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-03-20 17:49:09 +0000 |
---|---|---|
committer | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-03-20 17:49:09 +0000 |
commit | 9434e463c6ca1a981e934f7fcfdc1f98b28ec7e8 (patch) | |
tree | 62a56ef9362ff8989d5b8e86d76c5e150eac48ba /contrib | |
parent | 1a8bf94d3197b82fc41436b2a3043f339536f603 (diff) | |
download | gcc-9434e463c6ca1a981e934f7fcfdc1f98b28ec7e8.tar.gz |
2008-03-20 Basile Starynkevitch <basile@starynkevitch.net>
* gcc/Makefile.in: added @DEFS@ to MELT_CFLAGS. Better run-basilys.d
target (still specific to some systems like linux; depcomp should
be used...). Added ugly temporary kludge to build
coldbuilt-warm-basilys.c & coldbuilt-warm-basilys.so on Linux thru
clisp & contrib/coldbasilys.lisp. built-melt-cc-script better built.
* gcc/melt-cc-script.proto: corrected typos.
* gcc/run-basilys.h: working at last.
* contrib/cold-basilys.lisp: removed invocation if indent & basilys-gcc programs.
(output_ccode) added newline emission after outputting preprocessor directives.
* contrib/ChangeLog.melt: new file
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/melt-branch@133392 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/ChangeLog.melt | 4 | ||||
-rw-r--r-- | contrib/cold-basilys.lisp | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/contrib/ChangeLog.melt b/contrib/ChangeLog.melt new file mode 100644 index 00000000000..fa46a65c551 --- /dev/null +++ b/contrib/ChangeLog.melt @@ -0,0 +1,4 @@ + +2008-03-20 Basile Starynkevitch <basile@starynkevitch.net> + * cold-basilys.lisp: removed invocation if indent & basilys-gcc programs. + (output_ccode) added newline emission after outputting preprocessor directives. diff --git a/contrib/cold-basilys.lisp b/contrib/cold-basilys.lisp index b2766c781ee..18402f452d1 100644 --- a/contrib/cold-basilys.lisp +++ b/contrib/cold-basilys.lisp @@ -3698,7 +3698,7 @@ nil) (format str " const char xargdescr_[],~%") (format str " union basilysparam_un* xargtab_,~%") (format str " const char xresdescr_[],~%") - (format str " union basilysparam_un* xrestab_)~%{") + (format str " union basilysparam_un* xrestab_)~%{~%") (format str "#if ENABLE_CHECKING~%") (format str " static long thiscallcounter__;~%") (format str " long callcount_ = ++thiscallcounter__;~%") @@ -3743,7 +3743,7 @@ nil) (format str "/* body ~d end */~%" rk) (format str " lab_endrout:~%") (format str "basilys_check_call_frames(BASILYS_ANYWHERE, \"end ~a\");~%" (routinecname obj)) - (format str " basilys_topframe= (void*)(curfram__.prev); return curfram__.varptr[0];") + (format str " basilys_topframe= (void*)(curfram__.prev); return curfram__.varptr[0];~%") (format str "#undef callcount~%") (format str "} /* end rout_~d */~%~%" rk) (setf (compilation-currout this_compilation) oldcurout) |