diff options
author | nicola <nicola@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-09-26 19:04:42 +0000 |
---|---|---|
committer | nicola <nicola@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-09-26 19:04:42 +0000 |
commit | 5ed38d93ab9471d6f59c56d62bccbba252b48e41 (patch) | |
tree | ff935b83ac7a3132daff8c1ab71e8497acbd2d64 /gcc/objc | |
parent | e573db500cf697c3caf47003f64c6310e1ca4abf (diff) | |
download | gcc-5ed38d93ab9471d6f59c56d62bccbba252b48e41.tar.gz |
In gcc/objc/:
* objc-act.c: Removed historical, obsolete comment at the top of
the file.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@164637 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/objc')
-rw-r--r-- | gcc/objc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/objc/objc-act.c | 20 |
2 files changed, 5 insertions, 20 deletions
diff --git a/gcc/objc/ChangeLog b/gcc/objc/ChangeLog index 8d5490e5282..29417d9650e 100644 --- a/gcc/objc/ChangeLog +++ b/gcc/objc/ChangeLog @@ -1,3 +1,8 @@ +2010-09-26 Nicola Pero <nicola.pero@meta-innovation.com> + + * objc-act.c: Removed historical, obsolete comment at the top of + the file. + 2010-09-21 Nicola Pero <nicola.pero@meta-innovation.com> PR objc/23710 diff --git a/gcc/objc/objc-act.c b/gcc/objc/objc-act.c index 55e50f411f8..e98890629c2 100644 --- a/gcc/objc/objc-act.c +++ b/gcc/objc/objc-act.c @@ -20,26 +20,6 @@ You should have received a copy of the GNU General Public License along with GCC; see the file COPYING3. If not see <http://www.gnu.org/licenses/>. */ - -/* Purpose: This module implements the Objective-C 4.0 language. - - compatibility issues (with the Stepstone translator): - - - does not recognize the following 3.3 constructs. - @requires, @classes, @messages, = (...) - - methods with variable arguments must conform to ANSI standard. - - tagged structure definitions that appear in BOTH the interface - and implementation are not allowed. - - public/private: all instance variables are public within the - context of the implementation...I consider this to be a bug in - the translator. - - statically allocated objects are not supported. the user will - receive an error if this service is requested. - - code generation `options': - - */ - #include "config.h" #include "system.h" #include "coretypes.h" |