r229923 - in /trunk/gcc: ChangeLog internal-fn....
rsandifo@gcc.gnu.org
rsandifo@gcc.gnu.org
Sat Nov 7 10:17:00 GMT 2015
Author: rsandifo
Date: Sat Nov 7 10:17:05 2015
New Revision: 229923
URL: https://gcc.gnu.org/viewcvs?rev=229923&root=gcc&view=rev
Log:
Move #undef DEF_INTERNAL_FN to internal-fn.def
In practice the definition of DEF_INTERNAL_FN is never reused after
including internal-fn.def, so we might as well #undef it there.
This becomes more obvious with a later patch that adds other
DEF_INTERNAL_* directives, such as DEF_INTERNAL_OPTAB_FN.
If the includer doesn't care about the information carried in
these new directives, it can simply leave the macro undefined
and internals.def will provide a definition that forwards to
DEF_INTERNAL_FN. It doesn't make much sense for includers to have
to #undef macros that are defined by internals.def and it seems overly
complicated to get internals.def to undef macros only in the cases
where it provided a definition. Instead I went with the approach of
#undeffing all the DEF_INTERNAL_* macros unconditionally.
Tested on x86_64-linux-gnu, aarch64-linux-gnu and arm-linux-gnueabi.
gcc/
* internal-fn.def: #undef DEF_INTERNAL_FN at the end.
* internal-fn.c: Don't undef it here.
* tree-core.h: Likewise.
Modified:
trunk/gcc/ChangeLog
trunk/gcc/internal-fn.c
trunk/gcc/internal-fn.def
trunk/gcc/tree-core.h
More information about the Gcc-cvs
mailing list