summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 2003-02-11 Michael Koch <konqueror@gmx.de>mkoch2003-02-112-4/+10
| | | | | | | | | * java/nio/channels/SelectionKey.java (OP_ACCEPT, OP_CONNECT, OP_READ, OP_WRITE): Initialize with correct values. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62683 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-02-11 Michael Koch <konqueror@gmx.de>mkoch2003-02-119-27/+78
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * java/nio/channels/DatagramChannel.java (write): Throws IOException. (connect): Throws IOException. (disconnect): Throws IOException. (read): Throws IOException. (receive): Throws IOException. (send): Throws IOException. * java/nio/channels/Pipe.java (open): Throws IOException. * java/nio/channels/SelectableChannel.java (configureBlocking): Throws IOException. * java/nio/channels/ServerSocketChannel.java (accept): Throws IOException. * java/nio/channels/SocketChannel.java (SocketChannel): Implements ByteChannel, ScatteringByteChannel, GatheringByteChannel. (read): Throws IOException. (write): Throws IOException. (finishConnect): Throws IOException. * java/nio/channels/spi/AbstractInterruptibleChannel.java (end): Throws AsynchronousCloseException. * java/nio/channels/spi/AbstractSelectableChannel.java (configureBlocking): Throws IOException. (implCloseChannel): Throws IOException. (implCloseSelectableChannel): Throws IOException. (implConfigureBlocking): Throws IOException. * java/nio/channels/spi/SelectorProvider.java (openDatagramChannel): Throws IOException. (openPipe): Throws IOException. (openSelector): Throws IOException. (openServerSocketChannel): Throws IOException. (openSocketChannel): Throws IOException. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62682 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-02-11 Michael Koch <konqueror@gmx.de>mkoch2003-02-113-0/+205
| | | | | | | | * gnu/java/nio/FileLockImpl.java, java/nio/channels/FileLock.java: New files. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62681 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-02-08 Michael Koch <konqueror@gmx.de>mkoch2003-02-113-4/+35
| | | | | | | | | | | | | | | | * java/nio/charset/IllegalCharsetNameException.java (serialVersionUID): New member variable. (charsetName): New member variable. (IllegalCharsetException): New implementation. (getCharsetName): New implementation. * java/nio/charset/UnsupportedCharsetException.java (serialVersionUID): New member variable. (charsetName): New member variable. (UnsupportedCharsetException): New implementation. (getCharsetName): New implementation. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62680 138bc75d-0d04-0410-961f-82ee72b054a4
* * acinclude.m4: Check for native targets that can't link atdj2003-02-114-3/+28
| | | | | | | | | this point in the build. * aclocal.m4: Regenerate. * configure: Regenerate. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62679 138bc75d-0d04-0410-961f-82ee72b054a4
* * javax/sql/ConnectionEvent.java (serialVersionUID): New field.tromey2003-02-112-5/+13
| | | | | | | (ex): Renamed from sqlException. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62678 138bc75d-0d04-0410-961f-82ee72b054a4
* * reload1.c (first_label_num): New.danglin2003-02-112-27/+30
| | | | | | | | | (reload): Index offsets_known_at and offsets_at using difference of label number and first label number. Don't use offset pointers. (set_label_offsets, set_initial_label_offsets): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62672 138bc75d-0d04-0410-961f-82ee72b054a4
* * mips-tfile.c (init_file): Add missing initializers in thesayle2003-02-112-12/+26
| | | | | | | | | | | | | | "#ifdef __alpha" case. (file_offset, max_file_offset): Declare as unsigned long. (write_varray): Cast to "unsigned long" in comparisons against either file_offset or max_file_offset. (write_object): Likewise. (read_seek): Likewise. (copy_object): Likewise. Declare "ifd" as int to match its use in add_ext_symbol, and avoid signed/unsigned conditional warning. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62671 138bc75d-0d04-0410-961f-82ee72b054a4
* Daily bump.gccadmin2003-02-112-2/+2
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62669 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-02-10 Nick Clifton <nickc@redhat.com>aldyh2003-02-112-4/+14
| | | | | | | | | | Aldy Hernandez <aldyh@redhat.com> * config/rs6000/eabispe.h (SUBSUBTARGET_OVERRIDE_OPTIONS): Do not override options which have been specified on the command line. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62662 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-02-10 Raif S. Naffah <raif@fl.net.au>tromey2003-02-112-11/+27
| | | | | | | | | * gnu/java/security/provider/SHA1PRNG.java (ensureIsSeeded): new method used to ensure seeding has occurred and that a specific seed can be set and used. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62660 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-02-10 Ranjit Mathew <rmathew@hotmail.com>tromey2003-02-103-20/+349
| | | | | | | | | | | | | | | | | | | | | | | | | | * java/lang/Win32Process.java (destroy): Declare as native. (hasExited): New native method. (exitValue): Define. (getErrorStream): Likewise. (getInputStream): Likewise. (getOutputStream): Likewise. (waitFor): Declare as native. (startProcess): New native method. (cleanup): Likewise. (ConcreteProcess): Define. (outputStream, inputStream, errorStream): New members. (procHandle, exitCode): Likewise. * java/lang/natWin32Process.cc (java::lang::ConcreteProcess::cleanup): Define. (java::lang::ConcreteProcess::destroy): Likewise. (java::lang::ConcreteProcess::hasExited): Likewise. (java::lang::ConcreteProcess::waitFor): Likewise. (new_string): Likewise. (java::lang::ConcreteProcess::startProcess): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62657 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-02-10 Raif S. Naffah <raif@fl.net.au>tromey2003-02-102-181/+189
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * java/math/BigInteger.java: Updated notice to include years 2002 and 3. Added 2 private (int) arrays with values from the HAC (Handbook of Applied Cryptography -A. Menezes & al): k[] that contains bit lengths and t[] that contains nbr. of tests --used in isProbablePrime(). * java/math/BigInteger.java (make(long)): Merged into valueOf(long). * java/math/BigInteger.java (make(int[],int), add(int,int), add(BI,BI,int), times(BI,int), divide(long,long,BI,BI,int), gcd(BI), isProbablePrime(int), shift(BI,int), valueOf(String,int), neg(BI), bitOp(int,BI,BI), and(BI,int)): Use valueOf(long) instead of make(long). * java/math/BigInteger.java (euclidInv): Reduce number of work vars (euclidInv(int,int,int)): Now returns an array of 2 ints instead of 3. (euclidInv(BI,BI,BI)): Used to return an array of 2 BIs; now accepts 6 BIs and returns void. (modInverse(BI)): Use new signatures of euclidInv(). * java/math/BigInteger.java (isProbablePrime(int)): Use divide() with static small primes instead of remainder(). Use pre-computed max nbr of trials based on bitlength of BI to test. Use pre-computed small primes for the trial tests instead of random numbers. * java/math/BigInteger.java (isOdd, isMinusOne, pow): Removed. not used. * java/math/BigInteger.java (format(int,StringBuffer)): Removed invoacation of MPN.chars_per_word(). not used. * java/math/BigInteger.java (gcd(int,int)): Declared 'tmp' once as local var and used where needed. * java/math/BigInteger.java (modPow(BI,BI)): Fixed spelling. Combined declaration with initialisation of locals. Removed unused var. * java/math/BigInteger.java: Style changes (pow(int)): Removed 'else' keyword. (toString(int)): idem. (doubleValue()): idem. (bitLength()): idem. (equals(Object)): Use static methods name in same class w/o prepending class name. (doubleValue()): idem. (setNegative(BI)): idem. (negate()): idem. (and(BI,int)): idem. (and(BI)): idem. (gcd(BI)): idem. (byteArrayToIntArray()): Removed casting to (int). this is std. behaviour. (canonicalize()): idem. (alloc(int)): Always instantiate a new BI. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62656 138bc75d-0d04-0410-961f-82ee72b054a4
* * config/h8300/h8300.md (abssf2): New.kazu2003-02-102-0/+32
| | | | | | | | (*abssf2_h8300): Likewise. (*abssf2_h8300hs): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62654 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-02-10 Phil Edwards <pme@gcc.gnu.org>pme2003-02-102-1/+5
| | | | | | | * tree.c (build_tree_list): Fix parameter names in comment. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62653 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-02-10 Janis Johnson <janis187@us.ibm.com>janis2003-02-103-0/+154
| | | | | | | | * config/rs6000/ppc64-fp.c: New file. * config/rs6000/t-linux64 (LIB2FUNCS_EXTRA): Add ppc64-fp.c. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62652 138bc75d-0d04-0410-961f-82ee72b054a4
* - Really commit ctz patch.dje2003-02-101-19/+51
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62649 138bc75d-0d04-0410-961f-82ee72b054a4
* * java/sql/Timestamp.java (compareTo(Object)): New method.tromey2003-02-102-8/+32
| | | | | | | | (compareTo(Timestamp)): Likewise. (serialVersionUID): Updated. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62648 138bc75d-0d04-0410-961f-82ee72b054a4
* * Makefile.in (bb-reorder.o): Add dependency on $(FIBHEAP_H).zlomek2003-02-104-195/+1026
| | | | | | | | | | | | | | | | | | | | | * bb-reorder.c (make_reorder_chain): Deleted. (make_reorder_chain_1): Deleted. (find_traces): New function. (rotate_loop): New function. (mark_bb_visited): New function. (find_traces_1_round): New function. (copy_bb): New function. (bb_to_key): New function. (better_edge_p): New function. (connect_traces): New function. (copy_bb_p): New function. (get_uncond_jump_length): New function. (reorder_basic_blocks): Use new functions (Software Trace Cache). * cfgcleanup.c (outgoing_edges_match): Enable crossjumping across loop boundaries. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62645 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-02-10 Aldy Hernandez <aldyh@redhat.com>aldyh2003-02-102-1/+5
| | | | | | | * config/rs6000/rs6000.c (bdesc_2arg): Change spe_evxor to xorv2si3. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62644 138bc75d-0d04-0410-961f-82ee72b054a4
* * tree.h (struct tree_decl): Remove unused live_range_rtl field.geoffk2003-02-102-5/+5
| | | | | | | (DECL_LIVE_RANGE_RTL): Remove. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62642 138bc75d-0d04-0410-961f-82ee72b054a4
* * cp-tree.h (struct lang_type_header): Make all fields unsignedgeoffk2003-02-102-9/+14
| | | | | | | char. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62641 138bc75d-0d04-0410-961f-82ee72b054a4
* Replace occurances of "GNU CC" with "GCC" and reformat as appropriate.nickc2003-02-1030-409/+424
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62640 138bc75d-0d04-0410-961f-82ee72b054a4
* * config/h8300/clzsi2.c: Remove.kazu2003-02-106-198/+10
| | | | | | | | | | | * config/h8300/ctzsi2.c: Likewise. * config/h8300/paritysi2.c: Likewise. * config/h8300/popcountsi2.c: Likewise. * config/h8300/t-h8300 (LIB2FUNCS_EXTRA): Remove clzsi2, ctzsi2, paritysi2, and popcountsi2. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62637 138bc75d-0d04-0410-961f-82ee72b054a4
* PR c/7741ebotcazou2003-02-104-0/+28
| | | | | | | | * c-decl.c (duplicate_decls): Discard the initializer of the new decl when the types are conflicting. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62631 138bc75d-0d04-0410-961f-82ee72b054a4
* * Makefile.in (sreal.o): Added.zlomek2003-02-105-61/+721
| | | | | | | | | | (predict.o): Depends on sreal.h instead of real.h. * sreal.c: New file. * sreal.h: New file. * predict.c: Use sreal.c instead of real.c. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62630 138bc75d-0d04-0410-961f-82ee72b054a4
* * gcc.dg/i386-fpcvt-1.c: New test.hubicka2003-02-102-0/+14
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62627 138bc75d-0d04-0410-961f-82ee72b054a4
* oops - omiited from previous delta:nickc2003-02-101-0/+667
| | | | | | | | | | | | | | | | | | * Contributed support for the Cirrus EP9312 "Maverick" floating point co-processor. Written by Aldy Hernandez <aldyh@redhat.com>. (config/arm/arm.c): Add Cirrus support. (config/arm/arm.h): Likewise. (config/arm/aout.h): Likewise. (config/arm/arm.md): Likewise. (config/arm/arm-protos.h): Likewise. (config.gcc): Likewise. (doc/invoke.texi): Describe new -mcpu value and new -mcirrus-fix-invalid-insns switch, (cirrus.md): New file. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62626 138bc75d-0d04-0410-961f-82ee72b054a4
* Add support for Cirrus EP9312, an ARM variant.nickc2003-02-109-62/+746
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62625 138bc75d-0d04-0410-961f-82ee72b054a4
* * combine.c (combine_simplify_rtx): Simplify usinghubicka2003-02-102-0/+52
| | | | | | | | (float_truncate (float x)) is (float x) (float_extend (float_extend x)) is (float_extend x). git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62624 138bc75d-0d04-0410-961f-82ee72b054a4
* * calls.c (try_to_integrate): Tidy stack_usage_map access.amodra2003-02-102-23/+33
| | | | | | | | (emit_library_call_value_1): Likewise. Formatting. (store_one_arg): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62622 138bc75d-0d04-0410-961f-82ee72b054a4
* 2003-02-09 Nick Clifton <nickc@redhat.com>aldyh2003-02-102-37/+75
| | | | | | | | | | | | | | | | | | | | Aldy Hernandez <aldyh@redhat.com> * config/rs6000/spe.md: spe_evlhhesplat, spe_evlhhossplat, spe_evlhhousplat, spe_evlwhsplat, spe_evlwwsplat, spe_evldd, spe_evldh, spe_evldw, spe_evlwhe, spe_evlwhos, spe_evlwhou, spe_evstdd, spe_evstdh, spe_evstdw, spe_evstdwx, spe_evstwhe, spe_evstwho, spe_evstwwe, spe_evstwwo: Fix syntax to match newest docs. Add range test for immediate value. 2003-02-09 Aldy Hernandez <aldyh@redhat.com> Rename spe_evxor to xorv2si3. (xorv4hi3): New. (xorv1di3): New. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62621 138bc75d-0d04-0410-961f-82ee72b054a4
* * doc/extend.texi (C++98 Thread-Local Edits): Add missing @itemgerald2003-02-102-0/+6
| | | | | | | tag. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62620 138bc75d-0d04-0410-961f-82ee72b054a4
* Daily bump.gccadmin2003-02-102-2/+2
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62619 138bc75d-0d04-0410-961f-82ee72b054a4
* * i386.c (vector_move_operand): New predicate.hubicka2003-02-094-57/+153
| | | | | | | | | (ix86_expand_vector_move): Be happy about 0. * i386.h (PREDICATE_CODES): Add sse-move_operand. * i386.md (mov*_internal): Add 'C' alternative. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62612 138bc75d-0d04-0410-961f-82ee72b054a4
* * i386.md (floathi*): Deal with SSE.hubicka2003-02-092-4/+34
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62611 138bc75d-0d04-0410-961f-82ee72b054a4
* * simplify-rtx.c (simplify_unary_operation,hubicka2003-02-092-12/+190
| | | | | | | | simplify_binary_operation): Deal with vector modes (simplify_ternary_operation): Deal with no-op VEC_MERGE. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62610 138bc75d-0d04-0410-961f-82ee72b054a4
* * toplev.c (rest_of_compilation): Recompute register usage afterrsandifo2003-02-094-12/+25
| | | | | | | split_all_insns. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62607 138bc75d-0d04-0410-961f-82ee72b054a4
* * libgcc-std.ver (__clztf2): New.rth2003-02-095-89/+111
| | | | | | | | | | | | | | | | | | (__ctztf2, __popcounttf2, __paritytf2): New. * libgcc2.c (__clzSI2, __clzDI2, __ctzSI2, __ctzDI2, __popcountSI2, __popcountDI2, __paritySI2, __parityDI2): Use UWmode and UDWmode; adjust code to match the different type sizes. * libgcc2.h (__clzSI2, __ctzSI2, __popcountSI2, __paritySI2, __clzDI2, __ctzDI2, __popcountDI2, __parityDI2): New macros. * optabs.c (init_integral_libfuncs): Don't hard-code SImode and TImode; select word_mode and twice that. (init_floating_libfuncs): Don't hard-code SFmode and TFmode; select the modes from float, double, and long double. (init_optabs): Remove duplicate initializations. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62606 138bc75d-0d04-0410-961f-82ee72b054a4
* * gcc.c-torture/execute/builtin-bitops-1.c: When testing thekazu2003-02-092-16/+88
| | | | | | | | | int-wide bitops, use the constants of the same width. Likewise, if long long is 32-bit wide, test bitops using 32-bit constants. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62603 138bc75d-0d04-0410-961f-82ee72b054a4
* * doc/install.texi: Squeeze and streamline section ongerald2003-02-092-21/+22
| | | | | | | testing and regression checking. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62601 138bc75d-0d04-0410-961f-82ee72b054a4
* * i386.md (ahi?v*3): Set third operand type to TImode.hubicka2003-02-095-17/+109
| | | | | | | | | | | | | | | | | * i386.c (ix86_expand_binop_builtin): Extend operand when needed. * simplify-rtx.c (simplify_subreg): Fix conversion from vector into integer mode. * rtl.def (VEC_MERGE, VEC_SELECT, VEC_CONCAT, VEC_DUPLICATE): Change code so they are arithmetic expressions now. * simplify-rtx.c (simplify_unary_operation, simplify_binary_operation, simplify_ternary_operation): Deal with VEC_* expressions. * i386.md (vmaskcmp, pinsrw, movd patterns): Fix RTL representation. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62600 138bc75d-0d04-0410-961f-82ee72b054a4
* * cfgrtl.c (verify_flow_info): Use control_flow_insn_p.hubicka2003-02-093-3/+15
| | | | | | | | * reload1.c (fixup_abnormal_edges): Split basic blocks when EH edges possibly got duplicated. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62599 138bc75d-0d04-0410-961f-82ee72b054a4
* * config/alpha/alpha.c (override_options): Turn off explicitrth2003-02-092-0/+9
| | | | | | | relocs until post-peep2 code duplication resolved. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62597 138bc75d-0d04-0410-961f-82ee72b054a4
* * optabs.c (expand_unop): Widen clz properly when clz is donekazu2003-02-092-0/+13
| | | | | | | via libcall. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62595 138bc75d-0d04-0410-961f-82ee72b054a4
* * hppa/atomicity.h (__Atomicity_lock<__inst>::_S_atomicity_lock):danglin2003-02-092-6/+16
| | | | | | | | | Correct alignment. (__exchange_and_add, __atomic_add): Use PA 2.0 ordered store to reset lock. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62593 138bc75d-0d04-0410-961f-82ee72b054a4
* Daily bump.gccadmin2003-02-092-2/+2
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62592 138bc75d-0d04-0410-961f-82ee72b054a4
* * jcf-io.c (java_or_class_file): Use libiberty's lbasenamesayle2003-02-082-1/+6
| | | | | | | instead of basename to avoid compiler warnings on Tru64. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62582 138bc75d-0d04-0410-961f-82ee72b054a4
* * config/h8300/clzsi2.c: Replace "GNU CC" with "GCC".kazu2003-02-0813-49/+64
| | | | | | | | | | | | | | | | | * config/h8300/crti.asm: Likewise. * config/h8300/crtn.asm: Likewise. * config/h8300/ctzsi2.c: Likewise. * config/h8300/fixunssfsi.c: Likewise. * config/h8300/h8300-protos.h: Likewise. * config/h8300/h8300.c: Likewise. * config/h8300/h8300.h: Likewise. * config/h8300/h8300.md: Likewise. * config/h8300/paritysi2.c: Likewise. * config/h8300/popcountsi2.c: Likewise. * config/h8300/rtems.h: Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62581 138bc75d-0d04-0410-961f-82ee72b054a4
* * doc/invoke.texi: Documentation for my previous commit.rakdver2003-02-083-4/+27
| | | | | | | * doc/passes.texi: Ditto. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62580 138bc75d-0d04-0410-961f-82ee72b054a4
OpenPOWER on IntegriCloud