[pypy-commit] pypy libgccjit-backend: notes.rst: gcc r219480 onwards should have everything needed by the backend

dmalcolm noreply at buildbot.pypy.org
Mon Jan 12 18:35:09 CET 2015


Author: David Malcolm <dmalcolm at redhat.com>
Branch: libgccjit-backend
Changeset: r75308:eddd1a835153
Date: 2015-01-12 12:43 -0500
http://bitbucket.org/pypy/pypy/changeset/eddd1a835153/

Log:	notes.rst: gcc r219480 onwards should have everything needed by the
	backend

diff --git a/rpython/jit/backend/libgccjit/notes.rst b/rpython/jit/backend/libgccjit/notes.rst
--- a/rpython/jit/backend/libgccjit/notes.rst
+++ b/rpython/jit/backend/libgccjit/notes.rst
@@ -1,18 +1,18 @@
 This is an experiment, and merely a work-in-progress.
 
-In particular, this needs some changes to libgccjit that are currently
-only in my local repo:
+In particular, this needs some late-breaking changes to gcc 5's
+libgccjit; gcc r219480 onwards (2015-01-12) should have everything:
 
    * new API entrypoints:
 
-     * :c:func:`gcc_jit_result_get_global`
+     * :c:func:`gcc_jit_result_get_global` (added in gcc r219480)
 
-     * :c:func:`gcc_jit_context_new_rvalue_from_long`
+     * :c:func:`gcc_jit_context_new_rvalue_from_long` (added in gcc r219401)
 
-     * :c:func:`gcc_jit_context_get_last_error`
+     * :c:func:`gcc_jit_context_get_last_error` (added in gcc r219363)
 
    * a new value :c:macro:`GCC_JIT_UNARY_OP_ABS` within
-     :c:type:`enum gcc_jit_unary_op`.
+     :c:type:`enum gcc_jit_unary_op` (added in r219321)
 
    * an extra param to :c:func:`gcc_jit_context_new_global`
-     (enum gcc_jit_global_kind).
+     (enum gcc_jit_global_kind; added in gcc r219480).


More information about the pypy-commit mailing list