aboutsummaryrefslogtreecommitdiff
path: root/gcc/Makefile.in
diff options
context:
space:
mode:
authorYury Gribov <y.gribov@samsung.com>2014-08-11 06:06:29 +0000
committerYury Gribov <ygribov@gcc.gnu.org>2014-08-11 06:06:29 +0000
commitb78475cf7322cdce66bae717ee5768baabe8f8d6 (patch)
treecc507b413e35529d1cebf6d68425ef2f41fa5366 /gcc/Makefile.in
parentf473c082d8c9ddbc0d310160f12fad3f11a229e0 (diff)
downloadgcc-b78475cf7322cdce66bae717ee5768baabe8f8d6.zip
gcc-b78475cf7322cdce66bae717ee5768baabe8f8d6.tar.gz
gcc-b78475cf7322cdce66bae717ee5768baabe8f8d6.tar.bz2
Added fnspec to internal functions.
2014-08-11 Yury Gribov <y.gribov@samsung.com> gcc/ * gimple.c (gimple_call_fnspec): Support internal functions. (gimple_call_return_flags): Use const. * Makefile.in (GTFILES): Add internal-fn.h to list of GC files. * internal-fn.def: Add fnspec information. * internal-fn.h (internal_fn_fnspec): New function. (init_internal_fns): Declare new function. * internal-fn.c (internal_fn_fnspec_array): New global variable. (init_internal_fns): New function. * tree-core.h: Update macro call. * tree.c (build_common_builtin_nodes): Initialize internal fns. From-SVN: r213806
Diffstat (limited to 'gcc/Makefile.in')
-rw-r--r--gcc/Makefile.in4
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in
index 31c1f4d..76ceca8 100644
--- a/gcc/Makefile.in
+++ b/gcc/Makefile.in
@@ -2296,7 +2296,9 @@ GTFILES = $(CPP_ID_DATA_H) $(srcdir)/input.h $(srcdir)/coretypes.h \
$(srcdir)/vtable-verify.c \
$(srcdir)/asan.c \
$(srcdir)/ubsan.c \
- $(srcdir)/tsan.c $(srcdir)/ipa-devirt.c \
+ $(srcdir)/tsan.c \
+ $(srcdir)/ipa-devirt.c \
+ $(srcdir)/internal-fn.h \
@all_gtfiles@
# Compute the list of GT header files from the corresponding C sources,