1. 05 Aug, 2003 4 commits
    • Makefile.am (DEJATOOL,EXPECT,RUNTEST,RUNTESTFLAGS): Remove unneeded variable assignments. · caf21254
      2003-08-04  Phil Edwards  <pme@gcc.gnu.org>
      
      	* testsuite/Makefile.am (DEJATOOL,EXPECT,RUNTEST,RUNTESTFLAGS):
      	Remove unneeded variable assignments.  Leave them for automake.
      	* testsuite/lib/libstdc++-v3.exp:  Rename...
      	* testsuite/lib/libstdc++.exp:  ...to this.  Adjust function names
      	accordingly.
      	* testsuite/libstdc++-v3.dg/dg.exp:  Rename...
      	* testsuite/libstdc++-dg/normal.exp:  ...to this.  Adjust function
      	names accordingly.
      
      From-SVN: r70165
      Phil Edwards committed
    • guide.html: run_doxygen uses bash. · f7ab5fa4
      2003-08-04  Phil Edwards  <pme@gcc.gnu.org>
      
      	* docs/doxygen/guide.html:  run_doxygen uses bash.
      	* docs/doxygen/mainpage.html:  We'll be shipping tag files.
      	* docs/doxygen/run_doxygen:  Tweaks and improvements.
      	* docs/doxygen/user.cfg.in:  Set GENERATE_TAGFILE.
      	* docs/html/install.html:  Update autoconf/automake requirements.
      	* docs/html/test.html:  Add section describing DejaGNU support.
      	* docs/html/17_intro/confdeps.dot:  New file, generates...
      	* docs/html/17_intro/confdeps.png:  ...this new file.
      	* docs/html/Makefile:  Generated here.
      	* docs/html/17_intro/configury.html:  New file.
      
      From-SVN: r70164
      Phil Edwards committed
    • Daily bump. · 8e9bb3cb
      [[Split portion of a mixed commit.]]
      
      From-SVN: r70162.2
      GCC Administrator committed
    • Daily bump. · ff160d77
      [[Split portion of a mixed commit.]]
      
      From-SVN: r70161.2
      GCC Administrator committed
  2. 04 Aug, 2003 16 commits
  3. 03 Aug, 2003 13 commits
  4. 02 Aug, 2003 7 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