diff options
author | Nicola Pero <nicola.pero@meta-innovation.com> | 2010-11-30 21:55:39 +0000 |
---|---|---|
committer | Nicola Pero <nicola@gcc.gnu.org> | 2010-11-30 21:55:39 +0000 |
commit | 6c39e757f6ef3dd6c470cd0293dacd8e94e0fe47 (patch) | |
tree | 8172aebfe61894b96734ffe92ed52f31bce5003d /gcc/c-family | |
parent | 1ab3acf4666620a8f37107698cd01a2a4a716552 (diff) | |
download | gcc-6c39e757f6ef3dd6c470cd0293dacd8e94e0fe47.tar.gz |
In gcc/c-family/: 2010-11-30 Nicola Pero <nicola.pero@meta-innovation.com>
In gcc/c-family/:
2010-11-30 Nicola Pero <nicola.pero@meta-innovation.com>
* c-common.h (objc_finish_function): New.
(objc_non_volatilized_type): Removed.
(objc_type_quals_match): Removed.
* stub-objc.c (objc_finish_function): New.
(objc_non_volatilized_type): Removed.
(objc_type_quals_match): Removed.
In gcc/objc/:
2010-11-30 Nicola Pero <nicola.pero@meta-innovation.com>
* objc-act.c (objc_build_volatilized_type): Removed.
(objc_non_volatilized_type): Removed.
(objc_type_quals_match): Removed.
(local_variables_to_volatilize): New.
(objc_volatilize_decl): Add the decl to volatilize to
local_variables_to_volatilize, but don't volatilize it yet.
(objc_finish_function): New.
* objc-act.h (local_variables_to_volatilize): New.
In gcc/cp/:
2010-11-30 Nicola Pero <nicola.pero@meta-innovation.com>
* decl.c (finish_function): Call objc_finish_function when
compiling Objective-C++.
* call.c (standard_conversion): Do not call
objc_non_volatilized_type().
(implicit_conversion): Same change.
* typeck.c (comp_ptr_ttypes_real): Same change.
In gcc/:
2010-11-30 Nicola Pero <nicola.pero@meta-innovation.com>
* c-decl.c (finish_function): Call objc_finish_function in
Objective-C.
* c-typeck.c (convert_for_assignment): Do not call
objc_type_quals_match().
From-SVN: r167318
Diffstat (limited to 'gcc/c-family')
-rw-r--r-- | gcc/c-family/ChangeLog | 9 | ||||
-rw-r--r-- | gcc/c-family/c-common.h | 3 | ||||
-rw-r--r-- | gcc/c-family/stub-objc.c | 17 |
3 files changed, 15 insertions, 14 deletions
diff --git a/gcc/c-family/ChangeLog b/gcc/c-family/ChangeLog index 7593aa0da30..84eef7d7453 100644 --- a/gcc/c-family/ChangeLog +++ b/gcc/c-family/ChangeLog @@ -1,3 +1,12 @@ +2010-11-30 Nicola Pero <nicola.pero@meta-innovation.com> + + * c-common.h (objc_finish_function): New. + (objc_non_volatilized_type): Removed. + (objc_type_quals_match): Removed. + * stub-objc.c (objc_finish_function): New. + (objc_non_volatilized_type): Removed. + (objc_type_quals_match): Removed. + 2010-11-30 Joseph Myers <joseph@codesourcery.com> * c-common.h (parse_optimize_options): Declare. diff --git a/gcc/c-family/c-common.h b/gcc/c-family/c-common.h index 620836fef2b..7e261e88df3 100644 --- a/gcc/c-family/c-common.h +++ b/gcc/c-family/c-common.h @@ -998,12 +998,10 @@ extern tree objc_is_object_ptr (tree); extern void objc_check_decl (tree); extern void objc_check_global_decl (tree); extern tree objc_common_type (tree, tree); -extern tree objc_non_volatilized_type (tree); extern bool objc_compare_types (tree, tree, int, tree); extern bool objc_have_common_type (tree, tree, int, tree); extern bool objc_diagnose_private_ivar (tree); extern void objc_volatilize_decl (tree); -extern bool objc_type_quals_match (tree, tree); extern tree objc_rewrite_function_call (tree, tree); extern tree objc_message_selector (void); extern tree objc_lookup_ivar (tree, tree); @@ -1065,6 +1063,7 @@ extern const char * objc_maybe_printable_name (tree, int); extern bool objc_is_property_ref (tree); extern bool objc_string_ref_type_p (tree); extern void objc_check_format_arg (tree, tree); +extern void objc_finish_function (void); /* The following are provided by the C and C++ front-ends, and called by ObjC/ObjC++. */ diff --git a/gcc/c-family/stub-objc.c b/gcc/c-family/stub-objc.c index e1e3090f768..fbf7ece1e97 100644 --- a/gcc/c-family/stub-objc.c +++ b/gcc/c-family/stub-objc.c @@ -67,12 +67,6 @@ objc_check_global_decl (tree ARG_UNUSED (decl)) } tree -objc_non_volatilized_type (tree type) -{ - return type; -} - -tree objc_common_type (tree ARG_UNUSED (type1), tree ARG_UNUSED (type2)) { return 0; @@ -97,12 +91,6 @@ objc_volatilize_decl (tree ARG_UNUSED (decl)) { } -bool -objc_type_quals_match (tree ARG_UNUSED (ltyp), tree ARG_UNUSED (rtyp)) -{ - return false; -} - tree objc_rewrite_function_call (tree function, tree ARG_UNUSED (first_param)) { @@ -461,3 +449,8 @@ objc_check_format_arg (tree ARG_UNUSED (format_arg), tree ARG_UNUSED (args_list)) { } + +void +objc_finish_function (void) +{ +} |