1. 20 Oct, 2004 19 commits
    • SaslClient.java, [...]: Remvoed CVS tags. · ccc89383
      2004-10-20  Michael Koch  <konqueror@gmx.de>
      
      	* javax/security/sasl/SaslClient.java,
      	javax/security/sasl/SaslClientFactory.java,
      	javax/security/sasl/SaslException.java,
      	javax/security/sasl/SaslServer.java,
      	javax/security/sasl/SaslServerFactory.java:
      	Remvoed CVS tags.
      
      From-SVN: r89329
      Michael Koch committed
    • NullConfiguration.java, [...]: Cleaned up import statements and copyright notices. · b99bf96a
      2004-10-20  Michael Koch  <konqueror@gmx.de>
      
      	* javax/security/auth/login/NullConfiguration.java,
      	javax/security/auth/x500/X500Principal.java,
      	javax/security/cert/X509Certificate.java,
      	javax/security/sasl/AuthenticationException.java,
      	javax/security/sasl/AuthorizeCallback.java,
      	javax/security/sasl/RealmCallback.java,
      	javax/security/sasl/RealmChoiceCallback.java,
      	javax/security/sasl/Sasl.java,
      	javax/security/sasl/SaslClient.java,
      	javax/security/sasl/SaslClientFactory.java,
      	javax/security/sasl/SaslException.java,
      	javax/security/sasl/SaslServer.java,
      	javax/security/sasl/SaslServerFactory.java:
      	Cleaned up import statements and copyright notices.
      
      From-SVN: r89328
      Michael Koch committed
    • RMIC.java: Reformatted. · 659d8f1a
      2004-10-20  Michael Koch  <konqueror@gmx.de>
      
      	* gnu/java/rmi/rmic/RMIC.java: Reformatted.
      
      From-SVN: r89327
      Michael Koch committed
    • re PR bootstrap/17832 (Bootstrap broken by fixincludes failures) · f4a8f279
      	PR bootstrap/17832
      
      	* fixincl.c (SIGCHLD): Remove definition.
      	(initialize): Remove SIGIOT and SIGPIPE checks.
      	(create_file): Fix mkdir() for Win32.
      	(internal_fix): Use dup2() instead of fcntl().
      
      	* fixlib.h (SIGQUIT): Define if undefined.
      	(SIGIOT): Same.
      	(SIGPIPE): Same.
      	(SIGALRM): Same.
      	(SIGKILL): Same.
      
      	* procopen.c (chain_open): Use dup2() instead of fcntl().
      
      From-SVN: r89326
      Aaron W. LaFramboise committed
    • Fix date. · d65c6710
      From-SVN: r89325
      Aaron W. LaFramboise committed
    • Timestamp.java, [...]: Reorganized imports and fixed copyright headers. · 724c2517
      2004-10-20  Michael Koch  <konqueror@gmx.de>
      
      	* java/sql/Timestamp.java,
      	java/text/AttributedCharacterIterator.java,
      	java/text/AttributedString.java,
      	java/util/zip/CheckedOutputStream.java,
      	java/util/zip/DeflaterOutputStream.java,
      	java/util/zip/ZipFile.java,
      	javax/crypto/Cipher.java,
      	javax/crypto/ExemptionMechanismException.java,
      	javax/crypto/SecretKey.java,
      	javax/crypto/SecretKeyFactory.java,
      	javax/naming/directory/ModificationItem.java,
      	javax/naming/directory/SearchControls.java,
      	javax/naming/event/NamingListener.java,
      	javax/naming/ldap/Control.java,
      	javax/naming/ldap/ExtendedResponse.java,
      	javax/net/ssl/SSLSocketFactory.java:
      	Reorganized imports and fixed copyright headers.
      
      From-SVN: r89324
      Michael Koch committed
    • adaint.c (__gnat_get_libraries_from_registry): Cast value to LPBYTE. · aa75e737
      	* adaint.c (__gnat_get_libraries_from_registry): Cast value
              to LPBYTE.
      	(__gnat_portable_spawn): Remove const.
      
      	* mingw32.h (MAXPATHLEN): Check for previous definition.
      
      From-SVN: r89323
      Aaron W. LaFramboise committed
    • ConsoleHandler.java, [...]: Standardized copyrigth header. · fd460b77
      2004-10-20  Michael Koch  <konqueror@gmx.de>
      
      	* java/util/logging/ConsoleHandler.java,
      	java/util/logging/ErrorManager.java,
      	java/util/logging/FileHandler.java,
      	java/util/logging/Filter.java,
      	java/util/logging/Formatter.java,
      	java/util/logging/Handler.java,
      	java/util/logging/Level.java,
      	java/util/logging/LogManager.java,
      	java/util/logging/LogRecord.java,
      	java/util/logging/Logger.java,
      	java/util/logging/LoggingPermission.java,
      	java/util/logging/MemoryHandler.java,
      	java/util/logging/SimpleFormatter.java,
      	java/util/logging/SocketHandler.java,
      	java/util/logging/StreamHandler.java,
      	java/util/logging/XMLFormatter.java:
      	Standardized copyrigth header.
      
      From-SVN: r89322
      Michael Koch committed
    • * MAINTAINERS (Write After Approval): Add myself. · 36554b92
      From-SVN: r89321
      Aaron W. LaFramboise committed
    • parser.c (cp_token_position): New typedef. · 0c5e4866
      	* parser.c (cp_token_position): New typedef. Define VEC thereof.
      	(struct cp_lexer): Allow buffer and buffer_end to be NULL. Make
      	next_token and last_token cp_token_position. Make saved_tokens a
      	VEC(cp_token_position).
      	(eof_token): New static variable.
      	(CP_SAVED_TOKENS_SIZE): Rename to ...
      	(CP_SAVED_TOKEN_STACK): ... here.
      	(cp_lexer_new_main): Adjust main lexer creation and buffer
      	filling.
      	(cp_lexer_new_from_tokens): Do not copy the tokens, merely point
      	to the parent buffer.  Do not append eof token.
      	(cp_lexer_destroy): Only free buffer if non-NULL. Free token
      	stack.
      	(cp_lexer_next_token, cp_lexer_prev_token): Remove.
      	(cp_lexer_token_position, cp_lexer_token_at): New.
      	(cp_lexer_saving_tokens): Adjust. Make inline.
      	(cp_lexer_advance_token, cp_lexer_token_difference): Remove.
      	(cp_lexer_peek_token_emit_debug_info): Fold into ...
      	(cp_lexer_peek_token): ... here.
      	(cp_lexer_peek_nth_token): Don't peek past EOF.
      	(cp_lexer_consume_token): Set next_token to eof_token, if reaching
      	EOF.
      	(cp_lexer_purge_token): Adjust eof setting.
      	(cp_lexer_purge_tokens_after): Likewise.
      	(cp_lexer_save_tokens): Push next_token directly.
      	(cp_lexer_commit_tokens): Adjust.
      	(cp_lexer_rollback_tokens): Pop next_token directly.
      	(cp_parser_check_for_invalid_template_id): Adjust token purging.
      	(cp_parser_translation_unit): Do not consume the EOF.
      	(cp_parser_nested_name_specifier_opt): Adjust token purging.
      	(cp_parser_template_id, cp_parser_template_name): Likewise.
      
      From-SVN: r89320
      Nathan Sidwell committed
    • AlgorithmParameterGenerator.java, [...]: Import statements reorganized... · 242b11bd
      2004-10-20  Michael Koch  <konqueror@gmx.de>
      
      	* java/security/AlgorithmParameterGenerator.java,
      	java/security/AlgorithmParameters.java,
      	java/security/DigestInputStream.java,
      	java/security/Identity.java,
      	java/security/KeyFactory.java,
      	java/security/KeyPairGenerator.java,
      	java/security/KeyStore.java,
      	java/security/MessageDigest.java,
      	java/security/MessageDigestSpi.java,
      	java/security/Policy.java,
      	java/security/SecureRandom.java,
      	java/security/Security.java,
      	java/security/Signature.java,
      	java/security/SignatureSpi.java,
      	java/security/cert/CertPathBuilder.java,
      	java/security/cert/CertPathValidator.java,
      	java/security/cert/CertStore.java,
      	java/security/cert/Certificate.java,
      	java/security/cert/CertificateFactory.java,
      	java/security/cert/PolicyQualifierInfo.java,
      	java/security/cert/TrustAnchor.java,
      	java/security/cert/X509CRL.java,
      	java/security/cert/X509CRLEntry.java,
      	java/security/cert/X509Certificate.java,
      	java/security/spec/RSAMultiPrimePrivateCrtKeySpec.java:
      	Import statements reorganized, some little formatting issues,
      	used java-style array declarations, added comments in empty catch
      	blocks.
      
      From-SVN: r89319
      Michael Koch committed
    • expr.c (store_field): Remove two arguments value_mode and unsignedp. · f45bdcd0
      	* expr.c (store_field): Remove two arguments value_mode and
      	unsignedp.
      	(expand_assignment, store_constructor_field,
      	expand_expr_real_1): Adjust calls to store_field.
      
      From-SVN: r89317
      Kazu Hirata committed
    • re PR target/17317 (Match Constraints for *movdf_insn fails) · 4f8102db
      	* config/arc/lib1funcs.asm (___umulsidi3): Correct usage of flags.
      
      	PR target/17317
      	* config/arc/arc.h (REGNO_OK_FOR_BASE_P,REGNO_OK_FOR_INDEX_P,
      	REG_OK_FOR_BASE, REG_OK_FOR_INDEX): Consider blink(r31) as a valid
      	base and index register for loads.
      
      	* config/arc/t-arc: Fix multilib handling.
      
      From-SVN: r89316
      Ramana Radhakrishnan committed
    • ifc-20040816-2.c: Use integer arithmetic instead of floating point arithmetic, which could trap. · c0952176
      	* gcc.dg/tree-ssa/ifc-20040816-2.c: Use integer arithmetic instead
      	of floating point arithmetic, which could trap.
      
      Co-Authored-By: Devang Patel <dpatel@apple.com>
      
      From-SVN: r89313
      Ben Elliston committed
    • aclocal.m4: Rename to ... · dd365157
      2004-10-08  Mike Stump  <mrs@apple.com>
                  Andrew Pinski  <pinskia@physics.uc.edu>
      
              * aclocal.m4: Rename to ...
              * acinclude.m4: here and also use m4_include instead of sinclude.
              * aclocal.m4: Regenerate.
              * configure: Regenerate.
              * configure.ac: Add AM_MAINTAINER_MODE and AM_PROG_CC_C_O.
      
      Co-Authored-By: Andrew Pinski <pinskia@physics.uc.edu>
      
      From-SVN: r89312
      Mike Stump committed
    • cfgrtl.c (rtl_verify_flow_info_1): When checking insns in a bb, don't inspect… · 9524880c
      cfgrtl.c (rtl_verify_flow_info_1): When checking insns in a bb, don't inspect BLOCK_FOR_INSN for barriers.
      
      	* cfgrtl.c (rtl_verify_flow_info_1): When checking insns in a bb,
      	don't inspect BLOCK_FOR_INSN for barriers.
      	* emit-rtl.c (emit_barrier_before): Revert last change.
      	(emit_barrier_after, emit_barrier): Ditto.
      
      From-SVN: r89308
      Hans-Peter Nilsson committed
    • Daily bump. · a47498de
      [[Split portion of a mixed commit.]]
      
      From-SVN: r89306.2
      GCC Administrator committed
    • Daily bump. · 5385ca4f
      [[Split portion of a mixed commit.]]
      
      From-SVN: r89305.2
      GCC Administrator committed
  2. 19 Oct, 2004 21 commits