1. 03 Aug, 2003 3 commits
    • builtin-types.def (BT_SSIZE): New primitive type. · 178b2b9f
      
      	* builtin-types.def (BT_SSIZE): New primitive type.
      	(BT_FN_INT_PTR_CONST_STRING_VALIST_ARG,
      	BT_FN_STRING_CONST_STRING_CONST_STRING_INT,
      	BT_FN_SIZE_STRING_SIZE_CONST_STRING_CONST_PTR,
      	BT_FN_SSIZE_STRING_SIZE_CONST_STRING_VAR): New function types.
      	* builtins.def (BUILT_IN_DCGETTEXT, BUILT_IN_DGETTEXT,
      	BUILT_IN_FSCANF, BUILT_IN_GETTEXT, BUILT_IN_STRFMON,
      	BUILT_IN_STRFTIME, BUILT_IN_VFPRINTF, BUILT_IN_VFSCANF): New builtins.
      	* builtin-attrs.def: Remove DEF_FN_ATTR construct and the last
      	few functions that define default attributes using it.
      	* c-common.c (c_common_insert_default_attributes): Do nothing.
      
      	* doc/extend.texi: Document these "new" builtins.
      
      From-SVN: r70113
      Roger Sayle committed
    • linux.h (SUBTARGET_LINK_SPEC): Don't set rpath. · 469146c1
      	* config/sh/linux.h (SUBTARGET_LINK_SPEC): Don't set rpath.
      	(LIB_SPEC): Set -lpthread always when -pthread set.  Set -lieee
      	when -mieee-fp set and -shared not set.
      	(SH_FALLBACK_FRAME_FLOAT_STATE): Don't define for SH5.
      
      From-SVN: r70112
      Kaz Kojima committed
    • Daily bump. · 094838e2
      From-SVN: r70110
      GCC Administrator committed
  2. 02 Aug, 2003 16 commits
    • builtins-1.c: Add macro helpers. · 8e9dd1eb
      	* gcc.dg/builtins-1.c: Add macro helpers.  Add missing math
      	builtins.  Move cases from builtins-4.c here.
      
      	* gcc.dg/torture/builtin-math-1.c: New test taken from
      	bits of gcc.dg/builtins-3.c, gcc.dg/builtins-5.c and also some
      	additional cases.
      
      	* gcc.dg/builtins-3.c, gcc.dg/builtins-4.c, gcc.dg/builtins-5.c:
      	Delete.
      
      From-SVN: r70108
      Kaveh R. Ghazi committed
    • re PR c++/9447 (using Base<T>::member does not work) · fd9aef9d
      cp:
      	PR c++/9447
      	* cp-tree.def (USING_DECL): Document its type.
      	* class.c (pushclass): If we're entering a template, push any
      	dependent using decls it has.
      	* decl2.c (do_class_using_decl): Refactor. Type is NULL iff it is
      	a dependent scope.
      	* pt.c (tsubst_decl) <USING_DECL case>: Set type.
      	(tsubst): Remove USING_DECL checks.
      	(type_dependent_expression_p): Remove USING_DECL case.
      	* semantics.c (finish_member_declaration): A USING_DECL's type
      	indicates whether it is dependent.
      testsuite:
      	PR c++/9447
      	* g++.dg/template/using7.C: New test.
      
      From-SVN: r70107
      Nathan Sidwell committed
    • cppfiles.c (struct _cpp_file): Rename once_only_next to next_file. · 49634b3a
      	* cppfiles.c (struct _cpp_file): Rename once_only_next to
      	next_file.  Remove import and pragma_once, add once_only.
      	(find_file): Add new file structures to the all_files list.
      	(should_stack_file): Mark #import-ed files once-only, and
      	don't stack them if the file has already been stacked.
      	(_cp_mark_file_once_only): Simplify.
      	* cpphash.h (struct cpp_reader): Rename once_only_files
      	to all_files.  Rename saw_pragma_once to seen_once_only.
      	(_cpp_mark_file_once_only): Update prototype.
      	* cpplib.c (do_pragma_once): Update.
      testsuite:
      	* import1.c, import2.c: New tests.
      
      From-SVN: r70106
      Neil Booth committed
    • cppfiles.c (ENOTDIR): Remove. · cf1ee30c
      	* cppfiles.c (ENOTDIR): Remove.
      	(open_file_in_dir): Rename find_file_in_dir.  Handle errors
      	other than ENOENT here.
      	(once_only_file_p): Rename should_stack_file.
      	(find_file, open_file_failed, read_file_guts): Report errors
      	with full path name.
      	(read_file): Move pch handling to should_stack_file.
      	(should_stack_file): Handle PCH and once-only issues, and
      	reading the file.
      	(stack_file): Don't do file reads.
      
      From-SVN: r70104
      Neil Booth committed
    • 2003-08-02 Michael Koch <konqueror@gmx.de> · 7318eb21
      	* java/nio/ByteBufferImpl.java
      	(getChar): Check remaining bytes, fixed comment about endianess.
      	(putChar): Likewise.
      	(getShort): Likewise.
      	(putShort): Likewise.
      	(getInt): Check remaining bytes, fixed conversion, fixed comment about
      	endianess.
      	(putInt): Likewise.
      	(getLong): Likewise.
      	(putLong): Likewise.
      	(getFloat): Likewise.
      	(putFloat): Likewise.
      	(getDouble): Likewise.
      	(putDouble): Likewise.
      	* java/nio/DirectByteBufferImpl.java
      	(getChar): Wrapped code, fixed comment about endianess.
      	(putchar): Likewise.
      	(getShort): Likewise.
      	(putShort): Likewise.
      	(getInt): Fixed conversion, fixed comment about endianess.
      	(putInt): Likewise.
      	(getLong): Likewise.
      	(putLong): Likewise.
      	(getFloat): Likewise.
      	(putFloat): Likewise.
      	(getDouble): Likewise.
      	(putDouble): Likewise.
      	* java/nio/MappedByteBufferImpl.java
      	(compact): Implemented.
      	(getChar): Implemented.
      	(putChar): Implemented.
      	(getDouble): Implemented.
      	(putdouble): Implemented.
      	(getFloat): Implemented.
      	(putFloat): Implemented.
      	(getInt): Implemented.
      	(putInt): Implemented.
      	(getLong): Implemented.
      	(putLong): Implemented.
      	(getShort): Implemented.
      	(putShort): Implemented.
      	* java/nio/channels/FileChannelImpl.java
      	(read): Set position where to access file.
      	(write): Likewise.
      	(transferTo): Flip buffer after read and before write.
      	(transferFrom): Likewise.
      
      From-SVN: r70102
      Michael Koch committed
    • cp-tree.h (pushclass): Remove unneeded parameter. · 29370796
      cp:
      	* cp-tree.h (pushclass): Remove unneeded parameter.
      	* class.c (pushclass): Remove unneeded MODIFY parm. Adjust.
      	(push_nested_class): Adjust pushclass call.
      	* pt.c (instantiate_class_template): Likewise.
      	* semantics.c (begin_class_definition): Likewise.
      
      From-SVN: r70101
      Nathan Sidwell committed
    • libgcov.c (gcov_exit): Cleanup and fix. · 50612a04
      	* libgcov.c (gcov_exit): Cleanup and fix.
      	* profile.c (compute_value_histograms): Don't try to read profiles
      	that are not present.
      
      From-SVN: r70100
      Zdenek Dvorak committed
    • 2003-08-02 Michael Koch <konqueror@gmx.de> · 7575931c
      	* gnu/java/lang/ArrayHelper.java
      	(equalsArray): Reformated, added method documentation.
      
      From-SVN: r70099
      Michael Koch committed
    • 2003-08-02 Michael Koch <konqueror@gmx.de> · 15b68e02
      	* java/net/URL.java
      	(URL): Added paragraph about the
      	gnu.java.net.nocache_protocol_handlers property.
      	(ph_cache): Renamed from handlers to match classpath's implementation.
      	Reordered it with factory and serialVersionUID member variables.
      	(cache_handlers): New member variable.
      	(static): New static initializer to initialize cache_handlers from
      	gnu.java.net.nocache_protocol_handlers property.
      	(URL): Use ph_cache instead of handlers, reformatted some code to
      	match classpath's implementation.
      
      From-SVN: r70098
      Michael Koch committed
    • * builtins.def: Categorize. · f53b62e1
      From-SVN: r70097
      Kaveh R. Ghazi committed
    • builtins.def (BUILT_IN_CABS, [...]): Mind fp rounding. · f6a46818
      	* builtins.def (BUILT_IN_CABS, BUILT_IN_CABSF, BUILT_IN_CABSL):
      	Mind fp rounding.
      	(BUILT_IN_FFSL): Use DEF_EXT_LIB_BUILTIN.
      
      From-SVN: r70096
      Kaveh R. Ghazi committed
    • 003-08-02 Andreas Tobler <a.tobler@schweiz.ch> · 12550591
              * config.gcc: Enable posix threads by default on darwin.
      
      From-SVN: r70095
      Andreas Tobler committed
    • typeck2.c (add_exception_specifier): Use 'bool' where appropriate. · ef09717a
      (cp)
      	* typeck2.c (add_exception_specifier): Use 'bool' where appropriate.
      
      From-SVN: r70094
      Nathanael Nerode committed
    • Fix typo · 1c787209
      From-SVN: r70093
      Nathanael Nerode committed
    • Makefile.tpl (check, check-c++): Express dependencies using dependencies rather than commands. · 333a28b4
      	* Makefile.tpl (check, check-c++): Express dependencies using
      	dependencies rather than commands.
      	* Makefile.in: Regenerate.
      
      From-SVN: r70092
      Matt Kraai committed
    • Daily bump. · 5292fe61
      From-SVN: r70089
      GCC Administrator committed
  3. 01 Aug, 2003 21 commits