This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug libgomp/64625] ___OFFLOAD_TABLE__ symbol not produced on x86_64 darwin


https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64625

--- Comment #14 from Thomas Schwinge <tschwinge at gcc dot gnu.org> ---
Author: tschwinge
Date: Tue Feb 24 17:00:36 2015
New Revision: 220944

URL: https://gcc.gnu.org/viewcvs?rev=220944&root=gcc&view=rev
Log:
[PR libgomp/64625] Remove __OFFLOAD_TABLE__ variable/formal parameter.

Fixup for r219836: adjust builtin function prototypes.

    PR libgomp/64625
    gcc/
    * omp-builtins.def (BUILT_IN_GOACC_DATA_START): Specify as
    BT_FN_VOID_INT_SIZE_PTR_PTR_PTR, not
    BT_FN_VOID_INT_PTR_SIZE_PTR_PTR_PTR.
    (BUILT_IN_GOACC_ENTER_EXIT_DATA, BUILT_IN_GOACC_UPDATE): Specify as
    BT_FN_VOID_INT_SIZE_PTR_PTR_PTR_INT_INT_VAR, not
    BT_FN_VOID_INT_PTR_SIZE_PTR_PTR_PTR_INT_INT_VAR.
    (BUILT_IN_GOACC_PARALLEL): Specify as
    BT_FN_VOID_INT_OMPFN_SIZE_PTR_PTR_PTR_INT_INT_INT_INT_INT_VAR, not
    BT_FN_VOID_INT_OMPFN_PTR_SIZE_PTR_PTR_PTR_INT_INT_INT_INT_INT_VAR.
    * builtin-types.def
    (BT_FN_VOID_INT_PTR_SIZE_PTR_PTR_PTR_INT_INT_VAR)
    (BT_FN_VOID_INT_OMPFN_PTR_SIZE_PTR_PTR_PTR_INT_INT_INT_INT_INT_VAR):
    Remove function types.
    (BT_FN_VOID_INT_SIZE_PTR_PTR_PTR)
    (BT_FN_VOID_INT_SIZE_PTR_PTR_PTR_INT_INT_VAR)
    (BT_FN_VOID_INT_OMPFN_SIZE_PTR_PTR_PTR_INT_INT_INT_INT_INT_VAR):
    New function types.
    gcc/ada/
    * gcc-interface/utils.c (DEF_FUNCTION_TYPE_VAR_8)
    (DEF_FUNCTION_TYPE_VAR_12): Remove macros.
    (DEF_FUNCTION_TYPE_VAR_7, DEF_FUNCTION_TYPE_VAR_11): New macros.
    gcc/c-family/
    * c-common.c (DEF_FUNCTION_TYPE_VAR_8, DEF_FUNCTION_TYPE_VAR_12):
    Remove macros.
    (DEF_FUNCTION_TYPE_VAR_7, DEF_FUNCTION_TYPE_VAR_11): New macros.
    gcc/fortran/
    * f95-lang.c (DEF_FUNCTION_TYPE_VAR_8, DEF_FUNCTION_TYPE_VAR_12):
    Remove macros.
    (DEF_FUNCTION_TYPE_VAR_7, DEF_FUNCTION_TYPE_VAR_11): New macros.
    * types.def (BT_FN_VOID_INT_PTR_SIZE_PTR_PTR_PTR_INT_INT_VAR)
    (BT_FN_VOID_INT_OMPFN_PTR_SIZE_PTR_PTR_PTR_INT_INT_INT_INT_INT_VAR):
    Remove function types.
    (BT_FN_VOID_INT_SIZE_PTR_PTR_PTR)
    (BT_FN_VOID_INT_SIZE_PTR_PTR_PTR_INT_INT_VAR)
    (BT_FN_VOID_INT_OMPFN_SIZE_PTR_PTR_PTR_INT_INT_INT_INT_INT_VAR):
    New function types.
    gcc/jit/
    * jit-builtins.c (DEF_FUNCTION_TYPE_VAR_8)
    (DEF_FUNCTION_TYPE_VAR_12): Remove macros.
    (DEF_FUNCTION_TYPE_VAR_7, DEF_FUNCTION_TYPE_VAR_11): New macros.
    * jit-builtins.h (DEF_FUNCTION_TYPE_VAR_8)
    (DEF_FUNCTION_TYPE_VAR_12): Remove macros.
    (DEF_FUNCTION_TYPE_VAR_7, DEF_FUNCTION_TYPE_VAR_11): New macros.
    gcc/lto/
    * lto-lang.c (DEF_FUNCTION_TYPE_VAR_8, DEF_FUNCTION_TYPE_VAR_12):
    Remove macros.
    (DEF_FUNCTION_TYPE_VAR_7, DEF_FUNCTION_TYPE_VAR_11): New macros.

Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/ada/ChangeLog
    trunk/gcc/ada/gcc-interface/utils.c
    trunk/gcc/builtin-types.def
    trunk/gcc/c-family/ChangeLog
    trunk/gcc/c-family/c-common.c
    trunk/gcc/fortran/ChangeLog
    trunk/gcc/fortran/f95-lang.c
    trunk/gcc/fortran/types.def
    trunk/gcc/jit/ChangeLog
    trunk/gcc/jit/jit-builtins.c
    trunk/gcc/jit/jit-builtins.h
    trunk/gcc/lto/ChangeLog
    trunk/gcc/lto/lto-lang.c
    trunk/gcc/omp-builtins.def


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]