summaryrefslogtreecommitdiff
path: root/gcc/hooks.c
diff options
context:
space:
mode:
authormmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4>2004-08-31 20:29:28 +0000
committermmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4>2004-08-31 20:29:28 +0000
commit219626ad06447381178d5b124b3763d631dc110e (patch)
treeee8a8ed7c7cd3d552d036001e3c45b585e180905 /gcc/hooks.c
parent02b088c62e20f329f3668796f5fca183eb1c122c (diff)
downloadgcc-219626ad06447381178d5b124b3763d631dc110e.tar.gz
* hooks.c (hook_bool_void_true): New function.
* hooks.h (hook_bool_void_true): Declare. * target-def.h (TARGET_CXX): Add TARGET_CXX_KEY_METHOD_MAY_BE_INLINE. * target.h (struct cxx): Add key_method_may_be_inline. * config/arm/arm.c (arm_cxx_key_method_may_be_inline): New function. (TARGET_CXX_KEY_METHOD_MAY_BE_INLINE): New macro. * config/arm/bpabi.h: Use __THUMB_INTERWORK__ instead of __THUMB_INTERWORK. * class.c (key_method): Rename to ... (determine_key_method): ... this. (finish_struct_1): Adjust accordingly. * cp-tree.h (key_method): Declare. * decl2.c (maybe_emit_vtables): Determine the key method here if it has not already been done. * g++.dg/abi/key1.C: New test. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@86843 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/hooks.c')
-rw-r--r--gcc/hooks.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/gcc/hooks.c b/gcc/hooks.c
index 077f9bf8e0e..6c17a5f4fc7 100644
--- a/gcc/hooks.c
+++ b/gcc/hooks.c
@@ -41,7 +41,14 @@ hook_bool_void_false (void)
return false;
}
-/* The same, but formally returning NO_REGS. */
+/* Generic hook that takes no arguments and returns true. */
+bool
+hook_bool_void_true (void)
+{
+ return true;
+}
+
+/* Generic hook that takes no arguments and returns NO_REGS. */
int
hook_int_void_no_regs (void)
{